import * as React from 'react';

/**
 * "Wichtige Hinweise" notice cards -- an eyebrow (icon + short label) over a plain-language
 * disclaimer paragraph. Always paired two-up in a grid, never alone.
 */
export interface NoticeCardProps {
  icon: string;
  title: string;
  children: React.ReactNode;
}
export function NoticeCard(props: NoticeCardProps): JSX.Element;
