/** * PageHeader - Standard page header with optional back navigation * refactored for Material 3 * * Provides consistent page header layout with title, optional back link, * and slot for action buttons. */ import type { Snippet } from 'svelte'; export interface Props { /** Page title */ title: string; /** Optional subtitle/description */ subtitle?: string; /** Back navigation URL */ backHref?: string; /** Back link label */ backLabel?: string; /** Slot for action buttons */ actions?: Snippet; /** Slot for additional content below title */ children?: Snippet; } declare const PageHeader: import("svelte").Component; type PageHeader = ReturnType; export default PageHeader; //# sourceMappingURL=PageHeader.svelte.d.ts.map