import { ASTNode } from 'graphql'; /** * Prints a GraphQL document and formats it using four spaces instead of two * * Might also add line breaks in the future * * Mostly relevant for documents or type definition nodes. For e.g. a StringValue, print() can be * used directly. */ export declare function prettyPrint(node: ASTNode): string;