import './index.less';
import React from 'react';
export interface TagProps {
    style?: React.CSSProperties;
    className?: string;
    color?: string;
    children?: React.ReactNode;
}
declare const Tag: React.MemoExoticComponent<(props: TagProps) => React.JSX.Element>;
export default Tag;
