import { FC, ReactNode } from 'react'; export interface ContainerProps { author?: ReactNode; secondRow?: ReactNode; } /** * page inner container. will display a like to edit the page and a last updated date. */ export declare const Container: FC;