import { PlusHeaderSelfProps as PlusHeaderProps } from './type'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue'; declare function __VLS_template(): { "header-left"?(_: { logo: string; title: string; }): any; "header-right"?(_: { userInfo: { [index: string]: unknown; [index: number]: unknown; [index: symbol]: unknown; username?: string; avatar?: string; }; title: string; }): any; }; declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { logo: string; title: string; trigger: string; userInfo: () => {}; dropdownList: () => never[]; logoutText: string; hasUserInfo: boolean; fixed: boolean; }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { clickDropdownItem: (item: { label: string; value: string; }) => void; }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { logo: string; title: string; trigger: string; userInfo: () => {}; dropdownList: () => never[]; logoutText: string; hasUserInfo: boolean; fixed: boolean; }>>> & { onClickDropdownItem?: ((item: { label: string; value: string; }) => any) | undefined; }, { fixed: boolean; trigger: "click" | "hover"; title: string; logo: string; logoutText: string; userInfo: { [index: string | number | symbol]: unknown; username?: string; avatar?: string; }; hasUserInfo: boolean; dropdownList: { label: string; value: string; }[]; }, {}>; declare const _default: __VLS_WithTemplateSlots>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };