import React from 'react'; interface ComponentProps { [key: string]: any; } export interface ICollection { children: React.ReactNode; selector: string; containerRef?: React.RefObject; } export interface ICollectionItem { isVisible: boolean; props: ComponentProps; key: string; children?: ICollectionItem[]; } export declare type CollectionType = React.FC; export {};