import { PropsWithChildren } from "react";
type PageProps = {
    title: string;
    description: string;
};
export declare const Page: ({ title, description, children, }: PropsWithChildren<PageProps>) => import("react/jsx-runtime").JSX.Element;
export {};
