///
import './styles/index.less';
export type { NotifyProps, NotifyCardProps, NotifyOptions } from './types';
declare const Notify: import("react").FunctionComponent & {
show: (p: string | import("./types").NotifyOptions) => void;
setDefaultOptions: (options: import("./types").NotifyOptions) => void;
resetDefaultOptions: () => void;
clear: () => void;
Card: import("react").FunctionComponent;
};
export { Notify };
export default Notify;