import { ReactNode } from 'react'; import { MessageProps } from './components/types'; export declare const message: { info: (messageInfo: string | ReactNode, options?: MessageProps) => (() => void); error: (messageInfo: string | ReactNode, options?: MessageProps) => (() => void); loading: (messageInfo: string | ReactNode, options?: MessageProps) => (() => void); }; export type { MessageProps };