import type { CommandDef } from '../core/types.js'; export type ExecuteGraphqlOptions = { endpoint: string; authHeaders?: Array<[string, string]>; fields?: string; selectionDepth?: number; }; export declare function executeGraphql(command: CommandDef, values: Record, options: ExecuteGraphqlOptions): Promise;