import React from 'react';
import { Color } from '../utils/props';
export interface LabelProps {
    /** 内容 */
    text?: string;
    /** label 的背景颜色 */
    color?: Color;
    /** label 的字体颜色 */
    tColor?: Color;
    className?: string;
    children?: any;
}
declare const Label: React.SFC<LabelProps>;
export default Label;
