export declare const DEFAULT_HEADERS: Record; export declare function getGitLabBaseUrl(): string; export declare function getAuthHeaders(): Record; export declare function createFetchOptions(): Record; export interface FetchWithRetryOptions extends RequestInit { retry?: boolean; maxRetries?: number; rateLimit?: boolean; rateLimitBaseUrl?: string; } export declare function extractBaseUrl(url: string): string | undefined; export declare function enhancedFetch(url: string, options?: FetchWithRetryOptions): Promise; export declare function resetDispatcherCache(): void;