import type { DocsmithConfig } from '../../core/index.js'; import type { Snippet } from 'svelte'; type $$ComponentProps = { config: DocsmithConfig; /** Custom logo mark; defaults to a book icon in a primary-tinted chip. */ logo?: Snippet; /** Extra header controls, rendered before the theme toggle. */ actions?: Snippet; }; declare const DocsHeader: import("svelte").Component<$$ComponentProps, {}, "">; type DocsHeader = ReturnType; export default DocsHeader;