import React from 'react';
import type { FC } from 'react';
interface PageProps {
    title: string;
}
declare const Page: FC<React.PropsWithChildren<PageProps>>;
export default Page;
