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> & { open: typeof open; close: typeof close; }; export declare function open(selector: string, options: Partial): void; export declare function close(selector: string): void; export {};