/// <reference types="react" />
import { NoticeProps } from './Notice';
declare const ExportNotice: import("react").NamedExoticComponent<{
    closable?: boolean | undefined;
    icon?: import("react").ReactNode;
    onClose?: ((e: import("react").MouseEvent<Element, MouseEvent>) => void) | undefined;
    styleType?: "default" | "disabled" | "success" | "warning" | "error" | "info" | undefined;
    action?: import("react").ReactNode;
} & import("react").HTMLAttributes<HTMLDivElement>> & {
    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 };
