import { ASTNode } from 'graphql'; declare type FetchGqlParamsType = { uri: string; query: ASTNode; variables?: any; }; export declare const fetchGql: ({ uri, query, variables, }: FetchGqlParamsType) => Promise; export {};