import type { Container } from '../container.js';
type Frame = {
    type: string;
    id: string;
};
export declare class RunningContext {
    private readonly container;
    private readonly stack;
    constructor(container: Container, stack?: Frame[]);
    getContainer(): Container;
    private isFrameInStack;
    getRepresentation(): string;
    private pushFrame;
    pushParameterFrame(id: string): RunningContext;
    pushServiceFrame(id: string): RunningContext;
}
export {};
//# sourceMappingURL=running.d.ts.map