import type { BooleanValueNode, EnumValueNode, FloatValueNode, GraphQLLeafType, IntValueNode, NullValueNode, StringValueNode } from "graphql"; import { UnbatchedStep } from "../step.ts"; /** * Implements `InputStaticLeafStep` * * @see __InputDynamicScalarStep */ export declare class __InputStaticLeafStep extends UnbatchedStep { static $$export: { moduleName: string; exportName: string; }; isSyncAndSafe: boolean; private readonly coercedValue; constructor(coercedValue: any); unbatchedExecute(): TLeaf; optimize(): import("./constant.ts").ConstantStep; } export declare function __inputStaticLeaf(inputType: GraphQLLeafType, value: IntValueNode | FloatValueNode | StringValueNode | BooleanValueNode | NullValueNode | EnumValueNode | undefined): __InputStaticLeafStep; //# sourceMappingURL=__inputStaticLeaf.d.ts.map