import { TNode } from '../common';
export interface TdResultProps {
    description?: string | TNode;
    icon?: TNode;
    image?: string | TNode;
    theme?: 'default' | 'success' | 'warning' | 'error';
    title?: string | TNode;
}
