import { type CardProps } from "antd"; import React from "react"; export interface PageProps extends CardProps { /** * 页面加载完成后执行的回调 */ onMount?: () => void; /** * 页面卸载前执行的回调 */ onUnmount?: () => void; } export declare const Page: React.ForwardRefExoticComponent>;