import React from "react"; import { StyledProps } from "../_type"; export interface StatusProps extends StyledProps { /** * 图标 * * - `blank` - 内容为空 * - `chart` - 图表为空或异常 * - `loading` - 加载中 * - `network` - 网络异常 * - `no-permission` - 无权限 * - `pay` - 待续费 * - `search` - 搜索无结果 * - `upload` - 图片上传 * * @default "blank" */ icon?: "blank" | "chart" | "loading" | "network" | "no-permission" | "pay" | "search" | "upload"; /** * 标题 */ title?: React.ReactNode; /** * 描述 */ description?: React.ReactNode; /** * 操作区 */ operation?: React.ReactNode; /** * 尺寸 * * @default "l" */ size?: "l" | "m" | "s" | "xs"; } export declare const Status: React.ForwardRefExoticComponent>;