import { ApolloClient } from "@apollo/client"; import type { Command } from "@oclif/core"; export declare let client: ApolloClient | null; export declare let cookieStr: string; export declare const printResponse: (command: Command, resp?: ApolloClient.QueryResult) => void; export declare const handleError: (command: Command, err: unknown, resp?: ApolloClient.QueryResult) => undefined; export declare const initClient: (command: Command, fetchAccessToken?: boolean) => Promise; export declare function getClient(command: Command, fetchAccessToken?: boolean): Promise;