import { RouteLocationRaw } from 'vue-router'; type SlotProps = { menuOpen: boolean | undefined; }; type LogoProps = { homeAriaLabel?: string; serviceTitle?: string; serviceSubtitle?: string; homeLink?: { ariaLabel?: string; to?: RouteLocationRaw; href?: string; }; headingLevelTitle?: 1 | 2 | 3 | 4 | 5 | 6; }; type __VLS_Props = { /** Keep the header visible */ sticky?: boolean; /** * Show the header at sticky only when the user scroll up in mobile * Need 'sticky' at true, */ hideWhenDown?: boolean; homeLink?: { ariaLabel?: string; to?: RouteLocationRaw; href?: string; }; width?: string | number; } & LogoProps; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ prepend: (props: SlotProps) => unknown; append: (props: SlotProps) => unknown; menu: (props: SlotProps) => unknown; logo: (props: SlotProps & LogoProps) => unknown; 'logo-brand-content': (props: SlotProps & LogoProps) => unknown; 'header-side': (props: SlotProps) => unknown; }> & { prepend: (props: SlotProps) => unknown; append: (props: SlotProps) => unknown; menu: (props: SlotProps) => unknown; logo: (props: SlotProps & LogoProps) => unknown; 'logo-brand-content': (props: SlotProps & LogoProps) => unknown; 'header-side': (props: SlotProps) => unknown; }; refs: { header: HTMLElement; headerSticky: HTMLDivElement; }; rootEl: HTMLElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, { width: string | number; sticky: boolean; serviceTitle: string; serviceSubtitle: string; homeLink: { ariaLabel?: string; to?: RouteLocationRaw; href?: string; } & { ariaLabel?: string; to?: RouteLocationRaw; href?: string; }; headingLevelTitle: 1 | 2 | 3 | 4 | 5 | 6; hideWhenDown: boolean; homeAriaLabel: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { header: HTMLElement; headerSticky: HTMLDivElement; }, HTMLElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };