import React from 'react'; export interface NoticeProps { content: string; closable?: boolean; leftIcon?: string; onClick?: (e: React.MouseEvent) => void; onClose?: (e: React.MouseEvent) => void; } export declare const Notice: (props: NoticeProps) => React.JSX.Element;