import * as _angular_core from '@angular/core'; /** * Top-of-page heading block. Three named slots via attribute selectors: * `[wrPageHeaderBreadcrumbs]` (top row), `[wrPageHeaderActions]` (right * side), `[wrPageHeaderExtra]` (bottom row of tags / metadata). Title + * subtitle come from inputs. * * @example * ```html * * *
* * *
*
* v2.4 * Stable *
*
* ``` * * @see https://ngwr.dev/components/page-header */ declare class WrPageHeader { /** Primary title shown as an h1. */ readonly title: _angular_core.InputSignal; /** Secondary line below the title. */ readonly subtitle: _angular_core.InputSignal; /** * Stack the title and actions vertically when the header's own box is too * narrow to sit them side by side (a container query on its own width, not * the viewport — so it adapts inside a narrow column or split pane). * @default false */ readonly responsive: _angular_core.InputSignalWithTransform; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } export { WrPageHeader };