import * as vue from 'vue'; import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, ComputedRef, Ref, DirectiveBinding } from 'vue'; type ClassValue = any; type SlotsToProps> = { $children?: (VNodeChild | (T extends { default: infer V; } ? V : {}) | { [K in keyof T]?: T[K]; }); 'v-slots'?: { [K in keyof T]?: T[K] | false; }; } & { [K in keyof T as `v-slot:${K & string}`]?: T[K] | false; }; type RawSlots = Record; type Slot = [T] extends [never] ? () => VNodeChild : (arg: T) => VNodeChild; type VueSlot = [T] extends [never] ? () => VNode[] : (arg: T) => VNode[]; type MakeInternalSlots = { [K in keyof T]: Slot; }; type MakeSlots = { [K in keyof T]: VueSlot; }; type GenericProps> = { $props: Props & SlotsToProps; $slots: MakeSlots; }; interface FilterPropsOptions, Props = ExtractPropTypes> { filterProps, U extends Exclude>>(props: T): Partial>; } declare function deepEqual(a: any, b: any): boolean; type EventProp void> = F; declare const EventProp: () => PropType>; type Density = null | 'default' | 'comfortable' | 'compact'; type ValidationResult = string | boolean; type ValidationRule = ValidationResult | PromiseLike | ((value: any) => ValidationResult) | ((value: any) => PromiseLike); type ValidateOnValue = 'blur' | 'input' | 'submit' | 'invalid-input'; type ValidateOn = ValidateOnValue | `${ValidateOnValue} lazy` | `${ValidateOnValue} eager` | `lazy ${ValidateOnValue}` | `eager ${ValidateOnValue}` | 'lazy' | 'eager'; interface ValidationProps { disabled: boolean | null; error: boolean; errorMessages: string | readonly string[] | null; focused: boolean; maxErrors: string | number; name: string | undefined; label: string | undefined; readonly: boolean | null; rules: readonly ValidationRule[]; modelValue: any; 'onUpdate:modelValue': EventProp | undefined; validateOn?: ValidateOn; validationValue: any; } type JSXComponent = { new (): ComponentPublicInstance; } | FunctionalComponent; type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent; declare const IconValue: PropType; type VMessageSlot = { message: string; }; interface VInputSlot { id: ComputedRef; messagesId: ComputedRef; isDirty: ComputedRef; isDisabled: ComputedRef; isReadonly: ComputedRef; isPristine: Ref; isValid: ComputedRef; isValidating: Ref; reset: () => void; resetValidation: () => void; validate: () => void; } type VInputSlots = { default: VInputSlot; prepend: VInputSlot; append: VInputSlot; details: VInputSlot; message: VMessageSlot; }; interface RippleDirectiveBinding extends Omit { value?: boolean | { class: string; }; modifiers: { center?: boolean; circle?: boolean; stop?: boolean; }; } type VRadioGroupSlots = Omit & { default: never; label: { label: string | undefined; props: Record; }; }; declare const VRadioGroup: { new (...args: any[]): vue.CreateComponentPublicInstance<{ type: string; inline: boolean; error: boolean; height: string | number; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean | null; readonly: boolean | null; messages: string | readonly string[]; focused: boolean; errorMessages: string | readonly string[] | null; maxErrors: string | number; rules: readonly ValidationRule[]; density: Density; ripple: boolean | { class: string; } | undefined; falseIcon: IconValue; trueIcon: IconValue; valueComparator: typeof deepEqual; centerAffix: boolean; hideSpinButtons: boolean; persistentHint: boolean; } & { name?: string | undefined; id?: string | undefined; width?: string | number | undefined; color?: string | undefined; maxWidth?: string | number | undefined; minWidth?: string | number | undefined; label?: string | undefined; class?: any; theme?: string | undefined; 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined; validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined; validationValue?: any; prependIcon?: IconValue | undefined; appendIcon?: IconValue | undefined; defaultsTarget?: string | undefined; 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined; 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined; hint?: string | undefined; hideDetails?: boolean | "auto" | undefined; } & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{ 'update:modelValue': (value: any) => true; }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "v-slot:label" | "v-slot:message" | "v-slot:details">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & { type: string; inline: boolean; error: boolean; height: string | number; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean | null; readonly: boolean | null; messages: string | readonly string[]; focused: boolean; errorMessages: string | readonly string[] | null; maxErrors: string | number; rules: readonly ValidationRule[]; density: Density; ripple: boolean | { class: string; } | undefined; falseIcon: IconValue; trueIcon: IconValue; valueComparator: typeof deepEqual; centerAffix: boolean; hideSpinButtons: boolean; persistentHint: boolean; } & { name?: string | undefined; id?: string | undefined; width?: string | number | undefined; color?: string | undefined; maxWidth?: string | number | undefined; minWidth?: string | number | undefined; label?: string | undefined; class?: any; theme?: string | undefined; 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined; validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined; validationValue?: any; prependIcon?: IconValue | undefined; appendIcon?: IconValue | undefined; defaultsTarget?: string | undefined; 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined; 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined; hint?: string | undefined; hideDetails?: boolean | "auto" | undefined; } & {}, { type: string; inline: boolean; error: boolean; height: string | number; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean | null; readonly: boolean | null; messages: string | readonly string[]; focused: boolean; errorMessages: string | readonly string[] | null; maxErrors: string | number; rules: readonly ValidationRule[]; density: Density; ripple: boolean | { class: string; } | undefined; falseIcon: IconValue; trueIcon: IconValue; valueComparator: typeof deepEqual; centerAffix: boolean; hideSpinButtons: boolean; persistentHint: boolean; }, true, {}, vue.SlotsType vue.VNode[]; details: (arg: VInputSlot) => vue.VNode[]; append: (arg: VInputSlot) => vue.VNode[]; prepend: (arg: VInputSlot) => vue.VNode[]; default: () => vue.VNode[]; label: (arg: { label: string | undefined; props: Record; }) => vue.VNode[]; }>>, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, { type: string; inline: boolean; error: boolean; height: string | number; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean | null; readonly: boolean | null; messages: string | readonly string[]; focused: boolean; errorMessages: string | readonly string[] | null; maxErrors: string | number; rules: readonly ValidationRule[]; density: Density; ripple: boolean | { class: string; } | undefined; falseIcon: IconValue; trueIcon: IconValue; valueComparator: typeof deepEqual; centerAffix: boolean; hideSpinButtons: boolean; persistentHint: boolean; } & { name?: string | undefined; id?: string | undefined; width?: string | number | undefined; color?: string | undefined; maxWidth?: string | number | undefined; minWidth?: string | number | undefined; label?: string | undefined; class?: any; theme?: string | undefined; 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined; validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined; validationValue?: any; prependIcon?: IconValue | undefined; appendIcon?: IconValue | undefined; defaultsTarget?: string | undefined; 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined; 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined; hint?: string | undefined; hideDetails?: boolean | "auto" | undefined; } & {}, {}, {}, {}, {}, { type: string; inline: boolean; error: boolean; height: string | number; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean | null; readonly: boolean | null; messages: string | readonly string[]; focused: boolean; errorMessages: string | readonly string[] | null; maxErrors: string | number; rules: readonly ValidationRule[]; density: Density; ripple: boolean | { class: string; } | undefined; falseIcon: IconValue; trueIcon: IconValue; valueComparator: typeof deepEqual; centerAffix: boolean; hideSpinButtons: boolean; persistentHint: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & vue.ComponentOptionsBase<{ type: string; inline: boolean; error: boolean; height: string | number; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean | null; readonly: boolean | null; messages: string | readonly string[]; focused: boolean; errorMessages: string | readonly string[] | null; maxErrors: string | number; rules: readonly ValidationRule[]; density: Density; ripple: boolean | { class: string; } | undefined; falseIcon: IconValue; trueIcon: IconValue; valueComparator: typeof deepEqual; centerAffix: boolean; hideSpinButtons: boolean; persistentHint: boolean; } & { name?: string | undefined; id?: string | undefined; width?: string | number | undefined; color?: string | undefined; maxWidth?: string | number | undefined; minWidth?: string | number | undefined; label?: string | undefined; class?: any; theme?: string | undefined; 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined; validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined; validationValue?: any; prependIcon?: IconValue | undefined; appendIcon?: IconValue | undefined; defaultsTarget?: string | undefined; 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined; 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined; hint?: string | undefined; hideDetails?: boolean | "auto" | undefined; } & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{ 'update:modelValue': (value: any) => true; }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "v-slot:label" | "v-slot:message" | "v-slot:details">, string, { type: string; inline: boolean; error: boolean; height: string | number; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean | null; readonly: boolean | null; messages: string | readonly string[]; focused: boolean; errorMessages: string | readonly string[] | null; maxErrors: string | number; rules: readonly ValidationRule[]; density: Density; ripple: boolean | { class: string; } | undefined; falseIcon: IconValue; trueIcon: IconValue; valueComparator: typeof deepEqual; centerAffix: boolean; hideSpinButtons: boolean; persistentHint: boolean; }, {}, string, vue.SlotsType vue.VNode[]; details: (arg: VInputSlot) => vue.VNode[]; append: (arg: VInputSlot) => vue.VNode[]; prepend: (arg: VInputSlot) => vue.VNode[]; default: () => vue.VNode[]; label: (arg: { label: string | undefined; props: Record; }) => vue.VNode[]; }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new (props: { modelValue?: T | null; "onUpdate:modelValue"?: (value: T | null) => void; }, slots: VRadioGroupSlots) => GenericProps) & FilterPropsOptions<{ trueIcon: { type: vue.PropType; default: string; }; falseIcon: { type: vue.PropType; default: string; }; type: { type: StringConstructor; default: string; }; name: StringConstructor; inline: BooleanConstructor; error: BooleanConstructor; id: StringConstructor; color: StringConstructor; style: { type: vue.PropType; default: null; }; disabled: { type: vue.PropType; default: null; }; readonly: { type: vue.PropType; default: null; }; class: vue.PropType; theme: StringConstructor; modelValue: null; density: { type: vue.PropType; default: string; validator: (v: any) => boolean; }; ripple: { type: vue.PropType; default: boolean; }; defaultsTarget: StringConstructor; valueComparator: { type: vue.PropType; default: typeof deepEqual; }; focused: BooleanConstructor; 'onUpdate:focused': vue.PropType<(args_0: boolean) => void>; errorMessages: { type: vue.PropType; default: () => never[]; }; maxErrors: { type: (StringConstructor | NumberConstructor)[]; default: number; }; label: StringConstructor; rules: { type: vue.PropType; default: () => never[]; }; validateOn: vue.PropType; validationValue: null; width: (StringConstructor | NumberConstructor)[]; maxWidth: (StringConstructor | NumberConstructor)[]; minWidth: (StringConstructor | NumberConstructor)[]; appendIcon: vue.PropType; centerAffix: { type: BooleanConstructor; default: boolean; }; prependIcon: vue.PropType; hideDetails: vue.PropType; hideSpinButtons: BooleanConstructor; hint: StringConstructor; persistentHint: BooleanConstructor; messages: { type: vue.PropType; default: () => never[]; }; direction: { type: vue.PropType<"horizontal" | "vertical">; default: string; validator: (v: any) => boolean; }; 'onClick:prepend': vue.PropType<(args_0: MouseEvent) => void>; 'onClick:append': vue.PropType<(args_0: MouseEvent) => void>; height: { type: (StringConstructor | NumberConstructor)[]; default: string; }; }, vue.ExtractPropTypes<{ trueIcon: { type: vue.PropType; default: string; }; falseIcon: { type: vue.PropType; default: string; }; type: { type: StringConstructor; default: string; }; name: StringConstructor; inline: BooleanConstructor; error: BooleanConstructor; id: StringConstructor; color: StringConstructor; style: { type: vue.PropType; default: null; }; disabled: { type: vue.PropType; default: null; }; readonly: { type: vue.PropType; default: null; }; class: vue.PropType; theme: StringConstructor; modelValue: null; density: { type: vue.PropType; default: string; validator: (v: any) => boolean; }; ripple: { type: vue.PropType; default: boolean; }; defaultsTarget: StringConstructor; valueComparator: { type: vue.PropType; default: typeof deepEqual; }; focused: BooleanConstructor; 'onUpdate:focused': vue.PropType<(args_0: boolean) => void>; errorMessages: { type: vue.PropType; default: () => never[]; }; maxErrors: { type: (StringConstructor | NumberConstructor)[]; default: number; }; label: StringConstructor; rules: { type: vue.PropType; default: () => never[]; }; validateOn: vue.PropType; validationValue: null; width: (StringConstructor | NumberConstructor)[]; maxWidth: (StringConstructor | NumberConstructor)[]; minWidth: (StringConstructor | NumberConstructor)[]; appendIcon: vue.PropType; centerAffix: { type: BooleanConstructor; default: boolean; }; prependIcon: vue.PropType; hideDetails: vue.PropType; hideSpinButtons: BooleanConstructor; hint: StringConstructor; persistentHint: BooleanConstructor; messages: { type: vue.PropType; default: () => never[]; }; direction: { type: vue.PropType<"horizontal" | "vertical">; default: string; validator: (v: any) => boolean; }; 'onClick:prepend': vue.PropType<(args_0: MouseEvent) => void>; 'onClick:append': vue.PropType<(args_0: MouseEvent) => void>; height: { type: (StringConstructor | NumberConstructor)[]; default: string; }; }>>; type VRadioGroup = InstanceType; export { VRadioGroup };