declare type CheckBoxProps = { size?: "l" | "m"; checked?: boolean; indeterminate?: boolean; disabled?: boolean; onChange?: (checked: boolean) => void; readOnly?: boolean; label?: string; }; declare const CheckBox: ({ size, checked, indeterminate, disabled, onChange, readOnly, label, }: CheckBoxProps) => JSX.Element; export default CheckBox;