/// import { NoticeProps } from './Notice'; declare const ExportNotice: import("react").NamedExoticComponent<{ closable?: boolean | undefined; icon?: import("react").ReactNode; onClose?: ((e: import("react").MouseEvent) => void) | undefined; styleType?: "default" | "disabled" | "success" | "warning" | "error" | "info" | undefined; action?: import("react").ReactNode; } & import("react").HTMLAttributes> & { readonly type: ({ closable, icon: _icon, children, onClose, styleType, action, ...rest }: NoticeProps) => JSX.Element | null; } & { /** @deprecated */ StyleType: ["default", "success", "warning", "error", "disabled"]; }; export default ExportNotice; export type { NoticeProps };