import { BaseSelectOption, Nullable, SelectOptionValue } from '../../types/index.js'; export type OnyxCheckboxProps = BaseSelectOption & { /** * Whether the checkbox is checked. */ modelValue?: Nullable; /** * If `true`, an indeterminate indicator is shown. */ indeterminate?: boolean; };