import React from 'react'; import { TagProps as AntdTagProps } from 'antd/lib/tag/index'; declare enum PriorityTagEnum { high = 0, medium = 1, low = 2 } declare enum StatusTagEnum { success = 0, error = 1, info = 2 } interface TagClassesProps { [key: string]: any; small?: boolean; outline?: boolean; priority?: keyof typeof PriorityTagEnum; light?: boolean; status?: keyof typeof StatusTagEnum; large?: boolean; smallPaddingTag?: boolean; closable?: boolean; } interface TagProps extends TagClassesProps, AntdTagProps { label: string; color?: string; rightLabel?: string; onClose?: (event?: React.MouseEvent) => void; } export declare const PhenomTag: ({ label, color, outline, small, large, light, priority, status, rightLabel, smallPaddingTag, closable, ...rest }: TagProps) => JSX.Element; export {};