import { AllowedComponentProps, ComponentCustomProps, MethodOptions, ObjectEmitsOptions, SlotsType, VNode, VNodeProps, DefineComponent as _DefineComponent } from 'vue'; declare type PublicProps = VNodeProps & AllowedComponentProps & ComponentCustomProps; declare type UnionToIntersection = (U extends any ? (k: U) => void : never) extends (k: infer I) => void ? I : never; export declare type EmitFn = Options extends Array ? (e: V, ...args: any[]) => void : {} extends Options ? (e: string, ...args: any[]) => void : UnionToIntersection< { [key in Event]: Options[key] extends (...args: infer Args) => any ? (e: key, ...args: Args) => void : (e: key, ...args: any[]) => void; }[Event] >; export type DefineComponent

= _DefineComponent; export type GlobalComponentConstructor

= { new (): { $props: P & PublicProps; $slots: S; $emit: E; } & M; }; /** * Custom types */ export declare type Booleanish = boolean | 'true' | 'false'; export declare type Numberish = number | string; export declare type Nullable = T | null | undefined; export declare type PassThrough = T | object | undefined; export declare type DesignToken = T | object | undefined; export declare type DefaultPassThrough = T | ((instance?: VNode) => T | undefined) | undefined; export declare type HintedString = (string & {}) | T;