import type { SharedPageHeaderProps } from '@contractspec/lib.ui-kit-core/interfaces'; import { type VariantProps } from 'class-variance-authority'; declare const headerVariants: (props?: ({ spacing?: "sm" | "lg" | "md" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface PageHeaderProps extends SharedPageHeaderProps, VariantProps { } export declare function PageHeader({ breadcrumb, title, subtitle, actions, spacing, className, }: PageHeaderProps): import("react/jsx-runtime").JSX.Element; export {};