/// <reference types="react" />
export interface ConfirmationDialogProps extends React.HTMLAttributes<HTMLElement> {
    passProps?: object;
    /** Support @testing-library/react `screen.getByTestId` */
    'data-testid'?: string;
    message: string;
    onConfirm: () => void;
    onCancel: () => void;
}
