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