import type { Response } from "../request/index.js";
import type { DiagnosticNodeInternal } from "../diagnostics/DiagnosticNodeInternal.js";
import type { ExecutionContext } from "./ExecutionContext.js";
/**
 * Legacy fetch implementation for when enableQueryControl is false
 * @hidden
 */
export declare class LegacyFetchImplementation {
    private endpoint;
    private pageSize;
    constructor(endpoint: ExecutionContext, pageSize: number);
    fetchMore(diagnosticNode: DiagnosticNodeInternal, fetchBuffer: any[]): Promise<Response<any>>;
}
//# sourceMappingURL=LegacyFetchImplementation.d.ts.map