import { IAccessibilityPropTypes } from '@utils/accessibility-helper'; import { ColorType } from '../../styles/Styles'; export interface CheckboxProps extends IAccessibilityPropTypes { disabled?: boolean; checked?: boolean; colorType?: ColorType; onChange?: (checked: boolean) => void; } export interface CheckableProps { size: number; visible: boolean; color: string; }