import type { VmSize } from '..'; import type { RadioModelValue, RadioChange } from './src/interface'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import RadioGroup from "./src/radio-group"; export declare const VRadioGroup: Install; readonly default: () => null; }; readonly disabled: BasicType; readonly vertical: BasicType; readonly columnGap: BasicType, string | number | null>; readonly rowGap: BasicType, string | number | null>; readonly background: BasicType; readonly size: BasicType, VmSize | 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 vertical: BasicType; readonly columnGap: BasicType, string | number | null>; readonly rowGap: BasicType, string | number | null>; readonly background: BasicType; readonly size: BasicType, VmSize | null>; readonly onChange: BasicType, null>; }>> & { "onUpdate:modelValue"?: ((val: RadioModelValue) => any) | undefined; }, { readonly background: boolean; readonly size: VmSize; readonly disabled: boolean; readonly vertical: boolean; readonly modelValue: RadioModelValue; readonly onChange: RadioChange; readonly columnGap: string | number; readonly rowGap: string | number; }>>; /** radio-group 组件实例类型 */ export type RadioGroupInstance = InstanceType; export * from './src/interface'; export default VRadioGroup;