import * as React from 'react';
declare type Props = {
    text: string;
    icon?: string;
    mods?: string;
    testId?: string;
};
declare const Tag: React.FunctionComponent<Props>;
export default Tag;
