import type { DocsmithConfig, NavGroup } from '../../core/index.js'; import type { TocItem } from '../../toc/index.js'; import type { Snippet } from 'svelte'; type $$ComponentProps = { config: DocsmithConfig; /** Sidebar groups; omit on non-doc pages (the landing/`page` layout). */ nav?: NavGroup[]; /** Title shown between the menu and controls. Defaults to the site title. */ title?: string; /** In-page TOC entries; the TOC popover is hidden when empty. */ tocItems?: TocItem[]; /** Id of the heading currently in view. */ tocActiveId?: string | null; logo?: Snippet; actions?: Snippet; }; declare const DocsMobileHeader: import("svelte").Component<$$ComponentProps, {}, "">; type DocsMobileHeader = ReturnType; export default DocsMobileHeader;