import { LitElement } from 'lit'; import { BpTypeElement } from '@blueprintui/components/internals'; /** * ```typescript * import '@blueprintui/components/include/header.js'; * ``` * * ```html * * header * * ``` * * @summary The header component is used to provide a consistent and recognizable top bar, typically containing a logo and main navigation. * @element bp-header * @since 1.0.0 * @slot - badge content * @cssprop --padding * @cssprop --background * @cssprop --color * @cssprop --height * @cssprop --font-size * @cssprop --gap */ export declare class BpHeader extends LitElement implements Pick { static styles: CSSStyleSheet[]; render(): import("lit").TemplateResult<1>; }