import { Tag as NextTag } from '@alifd/next';
import React from 'react';
declare type NextTagProps = React.ComponentProps<typeof NextTag>;
export declare type TagProps = {
    /** icon */
    icon?: React.ReactNode;
    hoverUnchangable?: Boolean;
} & NextTagProps;
declare const Tag: React.FC<TagProps> & {
    Closeable: typeof NextTag.Closeable;
    Selectable: typeof NextTag.Selectable;
    Group: typeof NextTag.Group;
};
export default Tag;
