import { LitElement } from 'lit'; export type HeaderContentJustify = 'start' | 'end' | 'between' | 'around' | 'center'; export interface HeaderProps { sticky?: boolean; contentJustify?: HeaderContentJustify; } /** * Header component - Provides a semantic, accessible, and responsive page header * * @slot logo - Content for logo/brand area * @slot - Navigation content (default slot) * * @csspart ag-header - The outer header element * @csspart ag-header-content - The inner content wrapper */ export declare class Header extends LitElement implements HeaderProps { sticky: boolean; contentJustify: HeaderContentJustify; static styles: import('lit').CSSResult; render(): import('lit').TemplateResult<1>; } //# sourceMappingURL=_Header.d.ts.map