import { KoraElement } from "../../base/kora-element.js"; import "../kora-brand/index.js"; import type { KoraHeaderState } from "./template.js"; /** * — top nav bar. Brand is configurable (`brand-label`, default "handle"); author nav * links as default children and right-side actions with `slot="actions"`: * * The shared global nav (Mint / H.A.L. / Merch) is rendered by default; author your own nav links * as default children to APPEND them, and right-side actions with `slot="actions"`. Set * `default-nav="false"` to omit the shared links. * * * Create policyRecover * * */ export declare class KoraHeader extends KoraElement { static get observedAttributes(): string[]; protected get preservesChildren(): boolean; protected initialState(): KoraHeaderState; protected template(): string; attributeChangedCallback(name: string, _old: string | null, value: string | null): void; protected update(): void; } declare global { interface HTMLElementTagNameMap { "kora-header": KoraHeader; } } //# sourceMappingURL=kora-header.d.ts.map