import type { ExtractPropTypes } from 'vue'; export declare const tipProps: { flex: BooleanConstructor; icon: { type: (BooleanConstructor | StringConstructor)[]; default: string; }; content: { type: StringConstructor; default: string; }; color: { type: StringConstructor; default: string; }; opDisplay: { type: StringConstructor; default: string; }; mode: { type: StringConstructor; default: string; }; position: { type: StringConstructor; default: string; }; during: { type: (NumberConstructor | StringConstructor)[]; default(): number; }; closable: BooleanConstructor; removable: BooleanConstructor; className: { type: StringConstructor; default: string; }; close: { type: FunctionConstructor; default: () => boolean; }; open: { type: FunctionConstructor; default: () => boolean; }; }; export type TipProps = ExtractPropTypes; export declare const tipEmits: string[]; export type TipEmits = typeof tipEmits;