export interface RiskConfirmationProps { open: boolean; title: string; description: string; acknowledgeLabel: string; cancelLabel: string; confirmLabel: string; acknowledged: boolean; disabled?: boolean; onAcknowledgedChange: (acknowledged: boolean) => void; onCancel: () => void; onConfirm: () => void; } /** * Render one in-page confirmation whose primary action is unavailable until * the caller-controlled acknowledgement is checked. */ export declare function RiskConfirmation({ open, title, description, acknowledgeLabel, cancelLabel, confirmLabel, acknowledged, disabled, onAcknowledgedChange, onCancel, onConfirm, }: RiskConfirmationProps): import("react").JSX.Element; //# sourceMappingURL=RiskConfirmation.d.ts.map