import React from 'react'; declare type arrowDirection = 'up' | 'right' | 'bottom' | 'left'; export interface CellProps extends React.HTMLAttributes { className?: string; /** 标签名 */ label: React.ReactNode; /** 标签描述 */ description?: React.ReactNode; /** 箭头 */ arrow?: boolean | arrowDirection; /** 对齐方式,可继承于CellGroup */ align?: 'left' | 'right'; /** 标签宽度,可继承于CellGroup */ labelWidth?: number; } export declare const Cell: React.FC; export default Cell;