import React from 'react'; export interface TagProps { children?: React.ReactNode; /** * Option to fit badge width to its parent width */ block?: boolean; /** * Set the variants of badge */ variant?: 'solid' | 'outline' | 'danger' | 'success' | 'warning'; /** * Set the background color of tag */ /** * Option to add button close of tag */ closable?: boolean; /** * Custom close icon */ closeIcon?: React.ReactNode; /** * Callback executed when tag is closed */ onClose?: () => void; } export declare const Tag: React.FC;