import * as React from 'react';
export interface Props {
    hackFooterLocation?: boolean;
    withSubNav?: boolean;
    title?: string;
    children: React.ReactNode;
}
export declare const Page: React.FC<Props>;
