import { Request } from "../client/index"; import type { Spec } from "../client/index"; export declare const givenRequest: (url: string, options: Spec & { shouldAttachBody?: boolean; }) => Request; export declare const givenGraphQLQueryFile: (file: string, variables?: any) => { query: string; variables: any; };