import { FormatResponse } from "../formatter/formatter.js"; import ts from "typescript"; export declare function toGraphQL(root: FormatResponse, f: ts.NodeFactory, pretty: boolean, targetSrcFilePath: string): GqlCompilerResp; export interface GqlCompilerResp { imports: ts.ImportDeclaration[]; node: ts.CallExpression; }