Strapi doesn't allow me to use an already created component

Hello everyone, I am trying to create a component called RichParagraphProps, this will be repeatable and I want it to be of several types, 1) string and the other type will be a component that I already created, the problem is that this second component that I already created called linksProps doesn’t appear when I try to select
I’m trying to replicate this schema typescript

interface RichParagraphProps {
  richParagraph: (string | LinkProps | ParagraphListProps)[];
}

these are the properties of LinksProps Component


thank you