export declare const createUseGQL: (options: { url: string; query: string; operationName?: string | undefined; authorization?: string | undefined; }) => () => { data: T | undefined; loading: boolean | undefined; error: Error | undefined; fetch: (variables?: any) => Promise; }; export declare const useGQL: ({ url, query, operationName, authorization, }: { url: string; query: string; operationName?: string | undefined; authorization?: string | undefined; }) => { data: T | undefined; loading: boolean | undefined; error: Error | undefined; fetch: (variables?: any) => Promise; };