import type { RadioModelValue, RadioChange } from '..'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import Radio from "./src/radio"; export declare const VRadio: Install; readonly default: () => null; }; readonly disabled: BasicType; readonly name: BasicType, string | null>; readonly label: { readonly type: PropType; readonly default: () => null; }; readonly onChange: BasicType, null>; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (val: RadioModelValue) => boolean; }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly; readonly default: () => null; }; readonly disabled: BasicType; readonly name: BasicType, string | null>; readonly label: { readonly type: PropType; readonly default: () => null; }; readonly onChange: BasicType, null>; }>> & { "onUpdate:modelValue"?: ((val: RadioModelValue) => any) | undefined; }, { readonly disabled: boolean; readonly name: string; readonly modelValue: RadioModelValue; readonly label: RadioModelValue; readonly onChange: RadioChange; }>>; /** radio 组件实例类型 */ export type RadioInstance = InstanceType; export * from './src/interface'; export default VRadio;