import type { GraphQLScalarType, ListValueNode, ObjectValueNode } from "graphql"; import type { UnbatchedExecutionExtra } from "../interfaces.ts"; import { UnbatchedStep } from "../step.ts"; /** * Handles "leaves" (scalars) */ export declare class __InputDynamicScalarStep extends UnbatchedStep { static $$export: { moduleName: string; exportName: string; }; isSyncAndSafe: boolean; private variableNames; private value; constructor(inputType: GraphQLScalarType, value: ListValueNode | ObjectValueNode); valueFromValues(variableValues: any[]): any; unbatchedExecute: (_extra: UnbatchedExecutionExtra, ...variableValues: any[]) => TLeaf; } //# sourceMappingURL=__inputDynamicScalar.d.ts.map