type __VLS_Props = { /** * 标题 */ title?: string; /** * 二级标题 */ subTitle?: string; /** * 图标类型 * * @default "info" */ icon?: string; }; declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {}; type __VLS_Slots = {} & { icon?: (props: typeof __VLS_1) => any; } & { title?: (props: typeof __VLS_3) => any; } & { subTitle?: (props: typeof __VLS_5) => any; } & { extra?: (props: typeof __VLS_7) => any; }; declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, Readonly>>, {}>; declare const _default: __VLS_WithSlots; export default _default; type __VLS_TypePropsToOption = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType[K]>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithSlots = T & { new (): { $scopedSlots: S; }; };