import { ExtractPropTypes } from 'vue'; import { default as Tip } from './tip.vue'; export declare const tipProps: { title: StringConstructor; content: StringConstructor; type: { readonly type: import('vue').PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export type TipProps = ExtractPropTypes; export type TipInstance = InstanceType;