// @ts-nocheck type __VLS_IntrinsicElements = __VLS_PickNotAny>>; type __VLS_Element = __VLS_PickNotAny; type __VLS_IsAny = 0 extends 1 & T ? true : false; type __VLS_PickNotAny = __VLS_IsAny extends true ? B : A; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_OmitKeepDiscriminatedUnion = T extends any ? Pick> : never; type __VLS_GlobalComponents = __VLS_PickNotAny & __VLS_PickNotAny & __VLS_PickNotAny & Pick; declare const __VLS_intrinsicElements: __VLS_IntrinsicElements; // v-for declare function __VLS_getVForSourceType(source: number): [number, number, number][]; declare function __VLS_getVForSourceType(source: string): [string, number, number][]; declare function __VLS_getVForSourceType(source: T): [ T[number], // item number, // key number, // index ][]; declare function __VLS_getVForSourceType }>(source: T): [ T extends { [Symbol.iterator](): Iterator } ? T1 : never, // item number, // key undefined, // index ][]; declare function __VLS_getVForSourceType(source: T): [ T[keyof T], // item keyof T, // key number, // index ][]; declare function __VLS_getSlotParams(slot: T): Parameters<__VLS_PickNotAny, (...args: any[]) => any>>; declare function __VLS_getSlotParam(slot: T): Parameters<__VLS_PickNotAny, (...args: any[]) => any>>[0]; declare function __VLS_directiveFunction(dir: T): T extends import('vue').ObjectDirective | import('vue').FunctionDirective ? (value: V) => void : T; declare function __VLS_withScope(ctx: T, scope: K): ctx is T & K; declare function __VLS_makeOptional(t: T): { [K in keyof T]?: T[K] }; type __VLS_SelfComponent = string extends N ? {} : N extends string ? { [P in N]: C } : {}; type __VLS_WithComponent = N1 extends keyof LocalComponents ? N1 extends N0 ? Pick : { [K in N0]: LocalComponents[N1] } : N2 extends keyof LocalComponents ? N2 extends N0 ? Pick : { [K in N0]: LocalComponents[N2] } : N3 extends keyof LocalComponents ? N3 extends N0 ? Pick : { [K in N0]: LocalComponents[N3] } : N1 extends keyof __VLS_GlobalComponents ? N1 extends N0 ? Pick<__VLS_GlobalComponents, N0> : { [K in N0]: __VLS_GlobalComponents[N1] } : N2 extends keyof __VLS_GlobalComponents ? N2 extends N0 ? Pick<__VLS_GlobalComponents, N0> : { [K in N0]: __VLS_GlobalComponents[N2] } : N3 extends keyof __VLS_GlobalComponents ? N3 extends N0 ? Pick<__VLS_GlobalComponents, N0> : { [K in N0]: __VLS_GlobalComponents[N3] } : { [K in N0]: unknown } type __VLS_FillingEventArg_ParametersLength any> = __VLS_IsAny> extends true ? -1 : Parameters['length']; type __VLS_FillingEventArg = E extends (...args: any) => any ? __VLS_FillingEventArg_ParametersLength extends 0 ? ($event?: undefined) => ReturnType : E : E; declare function __VLS_asFunctionalComponent any ? InstanceType : unknown>(t: T, instance?: K): T extends new (...args: any) => any ? (props: (K extends { $props: infer Props } ? Props : any) & Record, ctx?: { attrs?: any, slots?: K extends { $slots: infer Slots } ? Slots : any, emit?: K extends { $emit: infer Emit } ? Emit : any }) => __VLS_Element & { __ctx?: typeof ctx & { props?: typeof props; expose?(exposed: K): void; } } : T extends () => any ? (props: {}, ctx?: any) => ReturnType : T extends (...args: any) => any ? T : (_: {} & Record, ctx?: any) => { __ctx?: { attrs?: any, expose?: any, slots?: any, emit?: any, props?: {} & Record } }; declare function __VLS_elementAsFunctionalComponent(t: T): (_: T & Record, ctx?: any) => { __ctx?: { attrs?: any, expose?: any, slots?: any, emit?: any, props?: T & Record } }; declare function __VLS_functionalComponentArgsRest any>(t: T): Parameters['length'] extends 2 ? [any] : []; declare function __VLS_pickEvent(emitEvent: E1, propEvent: E2): __VLS_FillingEventArg< __VLS_PickNotAny< __VLS_AsFunctionOrAny, __VLS_AsFunctionOrAny > > | undefined; declare function __VLS_pickFunctionalComponentCtx(comp: T, compInstance: K): __VLS_PickNotAny< '__ctx' extends keyof __VLS_PickNotAny ? K extends { __ctx?: infer Ctx } ? Ctx : never : any , T extends (props: any, ctx: infer Ctx) => any ? Ctx : any >; type __VLS_FunctionalComponentProps = '__ctx' extends keyof __VLS_PickNotAny ? K extends { __ctx?: { props?: infer P } } ? NonNullable

: never : T extends (props: infer P, ...args: any) => any ? P : {}; type __VLS_AsFunctionOrAny = unknown extends F ? any : ((...args: any) => any) extends F ? F : any; declare function __VLS_normalizeSlot(s: S): S extends () => infer R ? (props: {}) => R : S; /** * emit */ // fix https://github.com/vuejs/language-tools/issues/926 type __VLS_UnionToIntersection = (U extends unknown ? (arg: U) => unknown : never) extends ((arg: infer P) => unknown) ? P : never; type __VLS_OverloadUnionInner = U & T extends (...args: infer A) => infer R ? U extends T ? never : __VLS_OverloadUnionInner & U & ((...args: A) => R)> | ((...args: A) => R) : never; type __VLS_OverloadUnion = Exclude< __VLS_OverloadUnionInner<(() => never) & T>, T extends () => never ? never : () => never >; type __VLS_ConstructorOverloads = __VLS_OverloadUnion extends infer F ? F extends (event: infer E, ...args: infer A) => any ? { [K in E & string]: (...args: A) => void; } : never : never; type __VLS_NormalizeEmits = __VLS_Prettify< __VLS_UnionToIntersection< __VLS_ConstructorOverloads & { [K in keyof T]: T[K] extends any[] ? { (...args: T[K]): void } : never } > >;