/** * 单列cell */ import React, { FC } from "react"; export interface CellProps { /** label */ label: React.ReactNode | string; value: React.ReactNode | string; unit?: string; className?: string; } export declare const Cell: FC;