```ts
const TagList: React.FC<React.PropsWithChildren<{
  className?: string;
  colorScheme?: ColorScheme;
  items: TagItem[];
  maxTagsCount?: number;
  variant?: TextVariant;
}>>;
```
