import { type DocumentNode } from 'graphql';
/**
 * Print an executable document node definition in a stable way.
 * All the nodes are sorted by name and the white space is reduced.
 */
export declare function printExecutableGraphQLDocument(document: DocumentNode): string;
