import { BaseInput_Props } from './_BooleanInput.props'; import { ZSelectInput_Option } from './_OptionsInput.props'; export type ZRadioSelect_Props = BaseInput_Props & Partial<{ /** ... */ readonly model: T | null; /** ... */ readonly label: string; /** ... */ readonly config: 'inline'; /** */ readonly options: readonly ZSelectInput_Option[]; /** */ readonly invalid: boolean; /** */ readonly 'help-text': string; }>; export declare const zRadioSelectSlots: ("label" | "help-text" | "options")[]; export type ZRadioSelect_Slots = (typeof zRadioSelectSlots)[number]; export type ZRadioSelect_Events = Partial<{ /** ... */ readonly change: Required['model']>; /** */ readonly blur: void; /** */ readonly validated: boolean; readonly restarted: void; }>;