import type { DocumentNode } from 'graphql/language/ast'; /** * Pipe with support for async functions * @param {array} array of functions * @returns single function */ export declare const pipeP: (fns: (() => any)[]) => (arg: any) => Promise; export declare function extractOperationName(document: DocumentNode | string): string | undefined; export declare function stringifyDocumentNode(document: TNode): string;