/// <reference types="react" />
import { NotifyProps } from './type';
export interface NotifyRef {
    show: (params: NotifyProps) => void;
}
declare function Notify(): JSX.Element;
declare namespace Notify {
    var displayName: string;
    var SHORT: number;
    var LONG: number;
    var success: (props: NotifyProps) => void;
    var fail: (props: NotifyProps) => void;
    var info: (props: NotifyProps) => void;
}
export default Notify;
//# sourceMappingURL=index.d.ts.map