import { AccessibilityPropsType } from '@utils/accessibility-helper'; import { ColorType } from '../../styles/Styles'; export interface SwitchProps extends AccessibilityPropsType { checked?: boolean; disabled?: boolean; onChange?: (val: boolean) => void; colorType?: ColorType; }