import { BaseSelectOption, SelectOptionValue } from '../../types/index.js'; export type OnyxRadioButtonProps = Omit, "hideLabel" | "requiredMarker"> & { /** * Identifier for the radio buttons in the group. * All radio buttons that should belong to the same radio group must have the same name. * See also: https://html.spec.whatwg.org/multipage/input.html#radio-button-group */ name: string; /** * Whether the radio button is checked. */ checked?: boolean; };