import { FC, CSSProperties } from 'react';
import { ItemData } from './types';
export interface FlexTagsProps {
    className?: string;
    style?: CSSProperties;
    list?: ItemData[];
}
declare const FlexTags: FC<FlexTagsProps>;
export default FlexTags;
