import { ASTNode } from 'graphql'; declare type FetchGqlParamsType = { uri: string; query: ASTNode; variables?: any; }; export declare const fetchGql: { ({ uri, query, variables, }: FetchGqlParamsType): Promise; parameters: any; displayName: string; __docgenInfo: { description: string; displayName: string; props: { uri: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; query: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; variables: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }; export {};