import { FunctionComponent } from 'react';
import { TaroNotifyProps } from "../../types";
export declare const Notify: FunctionComponent<Partial<TaroNotifyProps>> & {
    open: typeof open;
    close: typeof close;
};
export declare function open(selector: string): void;
export declare function close(selector: string): void;
