import { default as React, ComponentType, ReactNode, SVGAttributes } from 'react'; export declare const PageHeader: React.ForwardRefExoticComponent<{ Icon: ComponentType>; /** * The heading text. */ heading: string; /** * The t-shirt size of the header. * @default "lg" */ size?: "md" | "lg"; /** * The contents of the header. At a minimum, this should include a description * wrapped in a `

` element. */ children: ReactNode; } & React.HTMLAttributes & React.RefAttributes>; //# sourceMappingURL=PageHeader.d.ts.map