type PossibleResults = string | object;
export declare function fetchWithUserRetry<T extends PossibleResults>(url: string, options: RequestInit, message: string, resultType?: 'json' | 'text'): Promise<T>;
export {};
