import { ComponentType } from 'react'; import { IHolderProps } from '../Holder/Attach-Holder'; import { IControlProps } from '../Control/Attach-Control'; import { IButtonProps } from '../../Button/Button'; export interface IAttachRegistry { Holder: ComponentType; Control: ComponentType; Button: ComponentType; }