import { type ReactElement, type ReactNode } from 'react'; import type { SpectrumLabelableProps } from '@react-types/shared'; export interface ConfirmationDialogProps { heading: ReactNode; confirmationButtonLabel: string; children: ReactElement | ReactElement[]; onCancel: () => void; onConfirm: () => void; } export declare function ConfirmationDialog({ heading, confirmationButtonLabel, children, onCancel, onConfirm, }: ConfirmationDialogProps): JSX.Element; export default ConfirmationDialog; //# sourceMappingURL=ConfirmationDialog.d.ts.map