import { Operation } from "apollo-codegen-core/lib/compiler"; import { GraphQLInputObjectType } from "graphql"; import { TSType, LVal, Identifier, ObjectProperty } from "@babel/types"; export declare const typedIdentifier: (name: string, type: TSType) => Identifier; export declare const constructorDeclaration: (name: string, parameters: LVal[], returnType: TSType, properties: ObjectProperty[]) => import("babel-types").VariableDeclaration; export declare const constructorDeclarationForGraphQLInputObjectType: (type: GraphQLInputObjectType) => import("babel-types").VariableDeclaration; export declare const constructorDeclarationForOperation: (operation: Operation) => import("babel-types").VariableDeclaration;