import { FC, CSSProperties } from 'react';
import { ItemData } from './types';
export interface TagsProps {
    prefixCls?: string;
    className?: string;
    style?: CSSProperties;
    list?: ItemData[];
    max?: number;
    flexible?: boolean;
}
declare const Tags: FC<TagsProps>;
export default Tags;
