import { SerializedStyles } from '@emotion/react'; export interface BCCheckBoxProps { checked?: boolean; defaultChecked?: boolean; onCheckedChange?: (checked: boolean) => void; disabled?: boolean; value?: string; name?: string; required?: boolean; label?: string; size?: 'sm' | 'md' | 'lg'; containerCss?: SerializedStyles; checkboxCss?: SerializedStyles; labelCss?: SerializedStyles; wrapperCss?: SerializedStyles; className?: string; showWrapper?: boolean; id?: string; }