import './index.scss';
interface IToolTipItem {
    desc: string;
}
interface IValueObject {
    link?: string;
    text: string;
    toolTips?: IToolTipItem[] | string;
    [key: string]: any;
}
type ICnFormatTextValue = string | IValueObject;
export declare const renderValueHandleEmpty: (value: any) => any;
export declare const textRender: (value: ICnFormatTextValue) => any;
export {};
