import type { FormControlProps } from '@mui/material'; import React from 'react'; /** Props for {@link CheckboxFormControl}. */ export interface CheckboxFormControlProps extends FormControlProps { onCheckChanged?: (checked: boolean) => void; } /** Checkbox labeled "Do not show this again" for suppressible dialogs. */ export declare const CheckboxFormControl: React.FC; //# sourceMappingURL=CheckboxFormControl.d.ts.map