import React from "react"; export declare function ConfirmDialog({ confirmLabel, rejectLabel, onConfirm, onReject }: { confirmLabel: string; rejectLabel: string; onConfirm: () => any; onReject: () => any; }): React.JSX.Element;