import { BaseSelectOption, Nullable, SelectOptionValue } from '../../types/index.js'; export type OnyxSwitchProps = Omit, "value"> & { /** * Whether the switch should be checked or not. */ modelValue?: Nullable; };