import { ReactElement, FC } from 'react'; import { Component, Components } from '@component-controls/core'; export declare type ComponentsContainerProps = { children: (component: Component, props: any) => ReactElement | null; components: Components; /** * callback to be called when the tab changes * if the function returns false, it can stop chabging to the new tab */ onSelect?: (name: string, component: Component) => boolean | void; }; export declare const ComponentsContainer: FC;