import React from 'react'; /** @public */ export type HomePageProps = { title?: string; subtitle?: string; fullWidth?: boolean; fullHeight?: boolean; }; export declare const HomePage: (props: HomePageProps) => React.JSX.Element;