/// /** * Interface describing the properties of the warning box component. */ export interface IWarningBoxProps { /** * The warning box's header icon. */ headerIcon?: JSX.Element; /** * The warning box's header text. */ title: string; /** * The warning box's content text. */ content: string; } /** * Warning box component. */ export declare function WarningBox(props: IWarningBoxProps): JSX.Element;