import { default as React } from 'react'; export interface PageProps { children?: React.ReactNode; className?: string; showLoader?: boolean; } export declare function Page(props: PageProps): import("react/jsx-runtime").JSX.Element;