import type { DefinitionContext, RunningContext } from '../context/index.js';
import { Value } from '../value.js';
export declare class Service extends Value {
    private readonly id;
    constructor(context: DefinitionContext, id: string);
    protected assemble(context: RunningContext): Promise<unknown>;
}
export declare class Parameter extends Value {
    private readonly id;
    constructor(context: DefinitionContext, id: string);
    protected assemble(context: RunningContext): Promise<unknown>;
}
//# sourceMappingURL=container.d.ts.map