import { type GoldRushClientSettings, type GoldRushResponse } from "../types/Generic.types"; export declare class Execution { private settings; private headers; private maxRetries; private retryDelay; private enableRetry; private processes; constructor(settings: GoldRushClientSettings, headers: Record); execute(endpoint: URL, parseData: (data: GoldRushResponse) => GoldRushResponse): Promise>; }