/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { GraphDescriptor, InputValues, NodeHandlerContext, Schema, TraversalResult } from "@breadboard-ai/types"; export { ParameterManager }; declare class ParameterManager { #private; private readonly graph; private readonly inputs?; constructor(graph: GraphDescriptor, inputs?: InputValues); propertiesSchema(): Record; requestParameters(context: NodeHandlerContext, path: number[], result: TraversalResult): Promise; } //# sourceMappingURL=parameter-manager.d.ts.map