import type { Schema, Attribute } from '@strapi/strapi'; export interface MainTag extends Schema.Component { collectionName: 'components_main_tags'; info: { displayName: 'Tag'; icon: 'feather'; description: ''; }; attributes: { value: Attribute.String; }; } declare module '@strapi/strapi' { export module Shared { export interface Components { 'main.tag': MainTag; } } }