import { ParagraphProps } from '../Paragraph';
import { PublishStateProps } from '../PublishState';
export interface PageHeaderProps {
    /** render publish state above category */
    publishState?: PublishStateProps;
    /** render category/prefix above title */
    category?: string;
    /** Render title text */
    title?: string;
    /** Render subTitle text */
    subTitle?: string;
    /** optional array of paragraphs `@atoms/headings/CompHeading` */
    optionalContents?: ParagraphProps[];
}
declare const PageHeader: (pageHeader: PageHeaderProps) => any;
export default PageHeader;
