import React from 'react'; import PageHeadline from './PageHeadline/PageHeadline'; import PageIngress from './PageIngress/PageIngress'; import PageRow from './PageRow/PageRow'; import PageTitle from './PageTitle/PageTitle'; import Element from '../Element/Element'; import { CreateProps } from '../../types/utils/CreateProps'; export declare type PageProps = CreateProps<{ /** HTML tag name: div, span, h1 etc */ tagName?: keyof JSX.IntrinsicElements; }, typeof Element, 'occupyVerticalSpace'>; declare const Page: React.FunctionComponent & { Headline: typeof PageHeadline; Title: typeof PageTitle; Ingress: typeof PageIngress; Row: typeof PageRow; }; export default Page;