import { C11nEnv } from '../interpreter/c11n-env'; declare class FlowContainer { static createContainerPConnect(flowContainerInfo: { accessedOrder: any; items: any; }, pageReference: string, containerName: string, isAssignmentView?: boolean): (() => C11nEnv) | null; static processRootViewDetails(rootView: { config?: { context: any; name: any; } | undefined; }, containerItem: { context: any; }, pageReference: string): { viewName: any; viewContext: any; }; static addFlowContainerItem(pConnect: C11nEnv): void; } export default FlowContainer;