import { FC, ReactNode } from "react"; export interface ConfirmProps { content: ReactNode; onConfirm: () => void; onCancel: () => void; } export declare const ConfirmModal: FC; declare const confirm: ({ content, }: { content: ReactNode; }) => Promise; export default confirm;