import { CheckboxProps as MuiCheckboxProps } from '@mui/material/Checkbox'; /** * Checkbox component props * Re-exports MUI CheckboxProps while hiding MUI-specific naming */ export interface CheckboxProps extends Omit { /** * If true, the component is checked */ checked?: boolean; /** * If true, the component is disabled */ disabled?: boolean; /** * Callback fired when the state is changed */ onChange?: (event: React.ChangeEvent, checked: boolean) => void; } /** * Checkbox component * * Wraps MUI's Checkbox component with Exotel-specific defaults and styling. * All MUI Checkbox props are supported. */ export declare const Checkbox: import('../../../node_modules/react').ForwardRefExoticComponent>;