import { AvatarProps } from '../avatar';
import { TNode } from '../common';
export interface TdCommentProps {
    actions?: Array<TNode>;
    author?: string | TNode;
    avatar?: string | AvatarProps | TNode;
    content?: string | TNode;
    datetime?: string | TNode;
    quote?: string | TNode;
    reply?: string | TNode;
}
