import { FunctionComponent } from 'react';
import { DialogBasicProps } from './config';
import { BasicComponent } from '../../utils/typings';
export type DialogProps = DialogBasicProps & BasicComponent;
declare const defaultProps: DialogProps;
export declare const BaseDialog: FunctionComponent<Partial<DialogProps>> & {
    open: typeof open;
    close: typeof close;
};
export declare function open(selector: string, options: Partial<typeof defaultProps>): void;
export declare function close(selector: string): void;
export {};
