export interface HeaderProps {
    /** Brand wordmark, plain bold type. Defaults to "Kupp-west". */
    brand?: string;
    /** Small uppercase tagline under the wordmark, e.g. "Anhängerkupplungen & Elektrosätze". */
    tagline?: string;
}
/**
 * Centered page header (`.kwac-header`): the bold wordmark (`.kwac-mark`) over a
 * small uppercase, letter-spaced tagline (`.kwac-header-sub`). No logo image, no
 * navigation. Follows `Summary`, precedes `VehicleBar`.
 */
export declare function Header({ brand, tagline }: HeaderProps): import("react").JSX.Element;
