declare const fn: ({ title, cancelText, confirmText, showCancel, content, }: { title?: string | undefined; cancelText?: string | undefined; confirmText?: string | undefined; showCancel?: boolean | undefined; content?: undefined; }) => Promise | Promise<{ confirm: boolean; }>; export default fn;