import { inputShapeKey, type SchemaTypes } from '../types'; import { BaseTypeRef } from './base'; export declare class InputTypeRef extends BaseTypeRef { kind: "InputObject" | "Enum" | "Scalar"; $inferInput: T; [inputShapeKey]: T; constructor(kind: 'Enum' | 'InputObject' | 'Scalar', name: string); } //# sourceMappingURL=input.d.ts.map