import type { ApolloClient, ErrorLike, OperationVariables } from "@apollo/client"; import type { Command } from "@oclif/core"; interface QueryHandlerProps> { command: Command; query: string; variables?: TVar; } export declare const runMutation: >({ command, query, variables, }: QueryHandlerProps) => Promise<{ resp: ApolloClient.MutateResult | undefined; error: ErrorLike | null; }>; export declare const runQueryDeprecated: >({ command, query, variables, }: QueryHandlerProps) => Promise<{ resp: ApolloClient.QueryResult | undefined; error: ErrorLike | null; }>; export {};