import { TNode } from '../common';
export interface TdCellProps {
    align?: 'top' | 'middle' | 'bottom';
    arrow?: boolean;
    bordered?: boolean;
    description?: string | TNode;
    hover?: boolean;
    image?: string | TNode;
    leftIcon?: TNode;
    note?: string | TNode;
    required?: boolean;
    rightIcon?: TNode;
    title?: string | TNode;
    onClick?: (context: {
        e: MouseEvent;
    }) => void;
}
export interface TdCellGroupProps {
    bordered?: boolean;
    theme?: 'default' | 'card';
    title?: string;
}
