import * as React from 'react'; declare type Props = { title: string; actions?: React.ReactNode; helpText?: string; helpLink?: string; }; declare function PageHeader(props: Props): JSX.Element; export default PageHeader;