import { type ElementType } from 'react'; import type { PageHeaderProps } from '../types'; type HeaderContentProps = Pick, 'breadcrumbs' | 'backButton' | 'description' | 'actions' | 'subheader' | 'title' | 'isLoading'>; export declare const HeaderContent: ({ backButton, description, subheader, breadcrumbs, actions, title, isLoading, }: HeaderContentProps) => JSX.Element; export {};