import { PropsWithChildren, ReactNode } from 'react'; export interface PageHeaderProps { breadcrumb?: ReactNode; title: ReactNode; icon?: ReactNode; actions?: ReactNode; className?: string; } export interface State { } export default function PageHeader(props: PropsWithChildren): import("react/jsx-runtime").JSX.Element;