import { default as React } from 'react'; import { HeadingLevel } from '../typography/Heading'; export interface PageHeadingProps extends Omit, 'title'> { title: React.ReactNode; subtitle?: React.ReactNode; actions?: React.ReactNode; level?: HeadingLevel; } export declare function PageHeading({ title, subtitle, actions, level, className, ...props }: PageHeadingProps): React.JSX.Element;