/// import type { TagProps } from "./Tag.types"; declare function Tag({ children, isClosable, kind, onClose, ...rest }: TagProps): JSX.Element; declare namespace Tag { var displayName: string; var defaultProps: { size: string; isClosable: boolean; }; } export { Tag };