import type { GraphQLInputType } from "graphql"; import * as graphql from "graphql"; import type { AnyInputStep, NotVariableValueNode } from "../interfaces.ts"; import { Step } from "../step.ts"; /** * Implements `__InputListStep`. */ export declare class __InputListStep = graphql.GraphQLList> extends Step { static $$export: { moduleName: string; exportName: string; }; isSyncAndSafe: boolean; private itemCount; private readonly inputValues; constructor(inputType: TInputType, inputValues: NotVariableValueNode | undefined); optimize(): Step; execute(): any[]; unbatchedExecute: () => any; at(index: number): AnyInputStep; } //# sourceMappingURL=__inputList.d.ts.map