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