import { JSX, ReactNode } from 'react'; import { PageHeadingProps } from '../atoms/PageHeading'; import { PageHeadingToolbarProps } from '../atoms/PageHeading/PageHeadingToolbar'; export interface HomePageLayoutProps extends Pick { /** * Page content */ children: ReactNode; /** * When set, it will render a proper toolbar on the right side of the first row */ toolbar?: PageHeadingToolbarProps; } /** * This component renders a standard `PageLayout` but holds some logic * to define some default behavior for the home page, such as the navigation button label and action. */ export declare function HomePageLayout({ title, children, toolbar, }: HomePageLayoutProps): JSX.Element; export declare namespace HomePageLayout { var displayName: string; }