import * as vue from 'vue'; import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, JSXComponent, PropType, Ref, CSSProperties, WritableComputedRef } from 'vue'; 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 Density = null | 'default' | 'comfortable' | 'compact'; type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent; declare const IconValue: PropType; type SelectionControlSlot = { model: WritableComputedRef; textColorClasses: Ref; textColorStyles: Ref; backgroundColorClasses: Ref; backgroundColorStyles: Ref; inputNode: VNode; icon: IconValue | undefined; props: { onBlur: (e: Event) => void; onFocus: (e: FocusEvent) => void; id: string; }; }; type VSelectionControlSlots = { default: { backgroundColorClasses: Ref; backgroundColorStyles: Ref; }; label: { label: string | undefined; props: Record; }; input: SelectionControlSlot; }; declare const VSelectionControl: { new (...args: any[]): vue.CreateComponentPublicInstance<{ inline: boolean; error: boolean; style: vue.StyleValue; disabled: boolean | null; multiple: boolean | null; readonly: boolean | null; density: Density; ripple: boolean; valueComparator: typeof deepEqual; } & { type?: string | undefined; id?: string | undefined; name?: string | undefined; color?: string | undefined; value?: any; label?: string | undefined; class?: any; theme?: string | undefined; defaultsTarget?: string | undefined; falseIcon?: IconValue | undefined; trueIcon?: IconValue | undefined; baseColor?: string | undefined; trueValue?: any; falseValue?: any; } & {}, { isFocused: vue.ShallowRef; input: Ref; }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{ 'update:modelValue': (value: any) => boolean; }, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue" | "v-slot:input" | "v-slot:label">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & { inline: boolean; error: boolean; style: vue.StyleValue; disabled: boolean | null; multiple: boolean | null; readonly: boolean | null; density: Density; ripple: boolean; valueComparator: typeof deepEqual; } & { type?: string | undefined; id?: string | undefined; name?: string | undefined; color?: string | undefined; value?: any; label?: string | undefined; class?: any; theme?: string | undefined; defaultsTarget?: string | undefined; falseIcon?: IconValue | undefined; trueIcon?: IconValue | undefined; baseColor?: string | undefined; trueValue?: any; falseValue?: any; } & {}, { inline: boolean; error: boolean; style: vue.StyleValue; disabled: boolean | null; multiple: boolean | null; readonly: boolean | null; density: Density; ripple: boolean; valueComparator: typeof deepEqual; }, true, {}, vue.SlotsType; backgroundColorStyles: Ref; }) => VNode[]; label: (arg: { label: string | undefined; props: Record; }) => VNode[]; input: (arg: SelectionControlSlot) => VNode[]; }>>, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, { inline: boolean; error: boolean; style: vue.StyleValue; disabled: boolean | null; multiple: boolean | null; readonly: boolean | null; density: Density; ripple: boolean; valueComparator: typeof deepEqual; } & { type?: string | undefined; id?: string | undefined; name?: string | undefined; color?: string | undefined; value?: any; label?: string | undefined; class?: any; theme?: string | undefined; defaultsTarget?: string | undefined; falseIcon?: IconValue | undefined; trueIcon?: IconValue | undefined; baseColor?: string | undefined; trueValue?: any; falseValue?: any; } & {}, { isFocused: vue.ShallowRef; input: Ref; }, {}, {}, {}, { inline: boolean; error: boolean; style: vue.StyleValue; disabled: boolean | null; multiple: boolean | null; readonly: boolean | null; density: Density; ripple: boolean; valueComparator: typeof deepEqual; }>; __isFragment?: undefined; __isTeleport?: undefined; __isSuspense?: undefined; } & vue.ComponentOptionsBase<{ inline: boolean; error: boolean; style: vue.StyleValue; disabled: boolean | null; multiple: boolean | null; readonly: boolean | null; density: Density; ripple: boolean; valueComparator: typeof deepEqual; } & { type?: string | undefined; id?: string | undefined; name?: string | undefined; color?: string | undefined; value?: any; label?: string | undefined; class?: any; theme?: string | undefined; defaultsTarget?: string | undefined; falseIcon?: IconValue | undefined; trueIcon?: IconValue | undefined; baseColor?: string | undefined; trueValue?: any; falseValue?: any; } & {}, { isFocused: vue.ShallowRef; input: Ref; }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{ 'update:modelValue': (value: any) => boolean; }, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue" | "v-slot:input" | "v-slot:label">, string, { inline: boolean; error: boolean; style: vue.StyleValue; disabled: boolean | null; multiple: boolean | null; readonly: boolean | null; density: Density; ripple: boolean; valueComparator: typeof deepEqual; }, {}, string, vue.SlotsType; backgroundColorStyles: Ref; }) => VNode[]; label: (arg: { label: string | undefined; props: Record; }) => VNode[]; input: (arg: SelectionControlSlot) => VNode[]; }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new (props: { modelValue?: T | undefined; 'onUpdate:modelValue'?: ((value: T) => void) | undefined; }, slots: VSelectionControlSlots) => GenericProps<{ modelValue?: T | undefined; 'onUpdate:modelValue'?: ((value: T) => void) | undefined; }, VSelectionControlSlots>) & FilterPropsOptions<{ theme: StringConstructor; density: { type: vue.PropType; default: string; validator: (v: any) => boolean; }; class: vue.PropType; style: { type: vue.PropType; default: null; }; color: StringConstructor; disabled: { type: vue.PropType; default: null; }; defaultsTarget: StringConstructor; error: BooleanConstructor; id: StringConstructor; inline: BooleanConstructor; falseIcon: vue.PropType; trueIcon: vue.PropType; ripple: { type: BooleanConstructor; default: boolean; }; multiple: { type: vue.PropType; default: null; }; name: StringConstructor; readonly: { type: vue.PropType; default: null; }; modelValue: null; type: StringConstructor; valueComparator: { type: vue.PropType; default: typeof deepEqual; }; label: StringConstructor; baseColor: StringConstructor; trueValue: null; falseValue: null; value: null; }, ExtractPropTypes<{ theme: StringConstructor; density: { type: vue.PropType; default: string; validator: (v: any) => boolean; }; class: vue.PropType; style: { type: vue.PropType; default: null; }; color: StringConstructor; disabled: { type: vue.PropType; default: null; }; defaultsTarget: StringConstructor; error: BooleanConstructor; id: StringConstructor; inline: BooleanConstructor; falseIcon: vue.PropType; trueIcon: vue.PropType; ripple: { type: BooleanConstructor; default: boolean; }; multiple: { type: vue.PropType; default: null; }; name: StringConstructor; readonly: { type: vue.PropType; default: null; }; modelValue: null; type: StringConstructor; valueComparator: { type: vue.PropType; default: typeof deepEqual; }; label: StringConstructor; baseColor: StringConstructor; trueValue: null; falseValue: null; value: null; }>>; type VSelectionControl = InstanceType; export { VSelectionControl };