import * as vue from 'vue'; import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, JSXComponent, PropType, ComponentInternalInstance, Ref, ComputedRef } 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 IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent; declare const IconValue: PropType; interface GroupItem { id: number; value: Ref; disabled: Ref; } interface GroupProvide { register: (item: GroupItem, cmp: ComponentInternalInstance) => void; unregister: (id: number) => void; select: (id: number, value: boolean) => void; selected: Ref>; isSelected: (id: number) => boolean; prev: () => void; next: () => void; selectedClass: Ref; items: ComputedRef<{ id: number; value: unknown; disabled: boolean | undefined; }[]>; disabled: Ref; getItemIndex: (value: unknown) => number; } declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"]; type Breakpoint = typeof breakpoints[number]; type DisplayBreakpoint = 'xs' | Breakpoint; type VChipGroupSlots = { default: { isSelected: (id: number) => boolean; select: (id: number, value: boolean) => void; next: () => void; prev: () => void; selected: readonly number[]; }; }; declare const VChipGroup: { new (...args: any[]): vue.CreateComponentPublicInstance<{ symbol: any; filter: boolean; variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean; multiple: boolean; tag: string; column: boolean; selectedClass: string; valueComparator: typeof deepEqual; centerActive: boolean; nextIcon: IconValue; prevIcon: IconValue; } & { max?: number | undefined; color?: string | undefined; class?: any; mandatory?: boolean | "force" | undefined; theme?: string | undefined; mobileBreakpoint?: number | DisplayBreakpoint | undefined; showArrows?: string | boolean | undefined; } & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{ 'update:modelValue': (value: any) => boolean; }, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & { symbol: any; filter: boolean; variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean; multiple: boolean; tag: string; column: boolean; selectedClass: string; valueComparator: typeof deepEqual; centerActive: boolean; nextIcon: IconValue; prevIcon: IconValue; } & { max?: number | undefined; color?: string | undefined; class?: any; mandatory?: boolean | "force" | undefined; theme?: string | undefined; mobileBreakpoint?: number | DisplayBreakpoint | undefined; showArrows?: string | boolean | undefined; } & {}, { symbol: any; filter: boolean; variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean; multiple: boolean; tag: string; column: boolean; selectedClass: string; valueComparator: typeof deepEqual; centerActive: boolean; nextIcon: IconValue; prevIcon: IconValue; }, true, {}, vue.SlotsType boolean; select: (id: number, value: boolean) => void; next: () => void; prev: () => void; selected: readonly number[]; }) => vue.VNode[]; }>>, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, { symbol: any; filter: boolean; variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean; multiple: boolean; tag: string; column: boolean; selectedClass: string; valueComparator: typeof deepEqual; centerActive: boolean; nextIcon: IconValue; prevIcon: IconValue; } & { max?: number | undefined; color?: string | undefined; class?: any; mandatory?: boolean | "force" | undefined; theme?: string | undefined; mobileBreakpoint?: number | DisplayBreakpoint | undefined; showArrows?: string | boolean | undefined; } & {}, {}, {}, {}, {}, { symbol: any; filter: boolean; variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean; multiple: boolean; tag: string; column: boolean; selectedClass: string; valueComparator: typeof deepEqual; centerActive: boolean; nextIcon: IconValue; prevIcon: IconValue; }>; __isFragment?: undefined; __isTeleport?: undefined; __isSuspense?: undefined; } & vue.ComponentOptionsBase<{ symbol: any; filter: boolean; variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean; multiple: boolean; tag: string; column: boolean; selectedClass: string; valueComparator: typeof deepEqual; centerActive: boolean; nextIcon: IconValue; prevIcon: IconValue; } & { max?: number | undefined; color?: string | undefined; class?: any; mandatory?: boolean | "force" | undefined; theme?: string | undefined; mobileBreakpoint?: number | DisplayBreakpoint | undefined; showArrows?: string | boolean | undefined; } & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{ 'update:modelValue': (value: any) => boolean; }, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue">, string, { symbol: any; filter: boolean; variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">; direction: "horizontal" | "vertical"; style: vue.StyleValue; disabled: boolean; multiple: boolean; tag: string; column: boolean; selectedClass: string; valueComparator: typeof deepEqual; centerActive: boolean; nextIcon: IconValue; prevIcon: IconValue; }, {}, string, vue.SlotsType boolean; select: (id: number, value: boolean) => void; next: () => void; prev: () => void; selected: readonly number[]; }) => vue.VNode[]; }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new (props: { modelValue?: T | undefined; 'onUpdate:modelValue'?: ((value: T) => void) | undefined; }, slots: VChipGroupSlots) => GenericProps<{ modelValue?: T | undefined; 'onUpdate:modelValue'?: ((value: T) => void) | undefined; }, VChipGroupSlots>) & FilterPropsOptions<{ color: StringConstructor; variant: Omit<{ type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">; default: string; validator: (v: any) => boolean; }, "type" | "default"> & { type: PropType>; default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">; }; theme: StringConstructor; tag: { type: StringConstructor; default: string; }; modelValue: { type: null; default: undefined; }; multiple: BooleanConstructor; mandatory: PropType; max: NumberConstructor; selectedClass: { type: PropType; default: string; }; disabled: BooleanConstructor; class: PropType; style: { type: PropType; default: null; }; mobileBreakpoint: PropType; centerActive: BooleanConstructor; direction: { type: PropType<"horizontal" | "vertical">; default: string; }; symbol: { type: null; default: vue.InjectionKey; }; nextIcon: { type: PropType; default: string; }; prevIcon: { type: PropType; default: string; }; showArrows: { type: (StringConstructor | BooleanConstructor)[]; validator: (v: any) => boolean; }; column: BooleanConstructor; filter: BooleanConstructor; valueComparator: { type: PropType; default: typeof deepEqual; }; }, vue.ExtractPropTypes<{ color: StringConstructor; variant: Omit<{ type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">; default: string; validator: (v: any) => boolean; }, "type" | "default"> & { type: PropType>; default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">; }; theme: StringConstructor; tag: { type: StringConstructor; default: string; }; modelValue: { type: null; default: undefined; }; multiple: BooleanConstructor; mandatory: PropType; max: NumberConstructor; selectedClass: { type: PropType; default: string; }; disabled: BooleanConstructor; class: PropType; style: { type: PropType; default: null; }; mobileBreakpoint: PropType; centerActive: BooleanConstructor; direction: { type: PropType<"horizontal" | "vertical">; default: string; }; symbol: { type: null; default: vue.InjectionKey; }; nextIcon: { type: PropType; default: string; }; prevIcon: { type: PropType; default: string; }; showArrows: { type: (StringConstructor | BooleanConstructor)[]; validator: (v: any) => boolean; }; column: BooleanConstructor; filter: BooleanConstructor; valueComparator: { type: PropType; default: typeof deepEqual; }; }>>; type VChipGroup = InstanceType; export { VChipGroup };