import { FC, ReactNode } from 'react'; import { BlockConfig, ConnectedNode, NodePathMap, PropsConfig } from '../types.js'; export declare function connectStateProps(nodePathMap: NodePathMap, props: PropsConfig): { [key: string]: any; }; export declare function renderBlocks(host: string, config: ConnectedNode[], nodePathMap: { [key: string]: string; }): ReactNode; interface BlockContainerProps { host?: string; config: BlockConfig; loadingComponent?: ReactNode; } declare const BlockContainer: FC; export default BlockContainer; //# sourceMappingURL=BlockContainer.d.ts.map