import * as types from './types.js'; import { CoreResponse } from './response.js'; import { CoreRequest as AbstractCoreRequest } from '../core_base/request.js'; /** * Fetch-based implementation of Core Request class */ export declare class CoreRequest extends AbstractCoreRequest { private timeoutId; private abortController; constructor(url: string, options?: types.ICoreRequestOptions); /** * Build the full URL with query parameters */ private buildUrl; /** * Convert our options to fetch RequestInit */ private buildFetchOptions; /** * Fire the request and return a CoreResponse */ fire(): Promise; /** * Fire the request and return the raw Response */ fireCore(): Promise; /** * Clear the timeout and abort controller */ private clearTimeout; /** * Static factory method to create and fire a request */ static create(url: string, options?: types.ICoreRequestOptions): Promise; } /** * Convenience exports for backward compatibility */ export declare const isUnixSocket: typeof AbstractCoreRequest.isUnixSocket; export declare const parseUnixSocketUrl: typeof AbstractCoreRequest.parseUnixSocketUrl;