import { type FlexProps } from 'antd';
import React from 'react';
import { PageContextValue } from './PageContext';
export interface PageProps extends React.HTMLAttributes<HTMLDivElement>, Pick<FlexProps, 'gap'> {
    loading?: boolean;
    status?: PageContextValue['status'];
    Link?: PageContextValue['Link'];
}
export declare const Page: React.FC<PageProps>;
