import { CSSProperties } from 'react'; export type CheckboxProps = { label?: string | number; checked: boolean; onChange: (isChecked: boolean) => void; disabled?: boolean; id?: string; name?: string; value?: string | number; highlightedText?: boolean; size?: number; fontSize?: number; rounded?: string; style?: CSSProperties; labelContainerStyle?: CSSProperties; }; //# sourceMappingURL=type.d.ts.map