import type { DialogProps, AlertDialogProps } from './type'; declare const Dialog: ((props: DialogProps) => JSX.Element) & { show: (props: DialogProps) => (...args: any[]) => void; alert: (props: AlertDialogProps) => Promise; confirm: (props: DialogProps) => Promise; }; export default Dialog; export { Dialog }; export type { DialogProps } from './type';