import { Widget } from "./Widget"; export type CxChild = Record | React.ReactElement | Widget | CxChild[] | null | undefined; export declare class RenderingContext { options: any; exploreStack: any; prepareList: any[]; cleanupList: any[]; stacks: any; renderList: any; [key: string]: any; constructor(options?: any); getStack(key: string): any; push(key: string, value: any): any; pop(key: string): any; pushNamedValue(key: string, name: string, value: any): any; popNamedValue(key: string, name: string): any; get(key: string): any; getRootRenderList(): any; } //# sourceMappingURL=RenderingContext.d.ts.map