/// export interface ITag { _id: string; type: string; name: string; colorCode: string; objectCount?: number; } declare type TagsProps = { tags: ITag[]; size?: string; limit?: number; }; declare function Tags({ tags, limit }: TagsProps): JSX.Element; export default Tags; //# sourceMappingURL=index.d.ts.map