import type { RadioButtonProps } from 'primevue/radiobutton'; /** * @emits {string | number | boolean | object} input - Fires when radio is selected. Emits the "value" prop */ interface Props extends RadioButtonProps { /** * Value, set by radio * @type {string | number | boolean | object} */ value: string | number | boolean | object; /** * Radio label text * @type {string} * @default '' */ label?: string; /** * Marks the radio as required * @type {boolean} * @default false */ required?: boolean; /** * Disables the radio * @type {boolean} * @default false */ disabled?: boolean; /** * Changes visual style to outlined * @type {boolean} * @default false */ outline?: boolean; } type __VLS_Props = Props; type __VLS_ModelProps = { /** * [V-MODEL] currently selected value * @model selected */ 'selected': string | number | boolean | object; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare var __VLS_12: { label: string; isChecked: boolean; disabled: boolean; }; type __VLS_Slots = {} & { label?: (props: typeof __VLS_12) => any; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:selected": (value: string | number | boolean | object) => any; }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:selected"?: (value: string | number | boolean | object) => any; }>, { required: boolean; label: string; disabled: boolean; outline: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };