export declare const REQUEST_TIMEOUT_MS = 60000; export declare const BINARY_TRANSFER_TIMEOUT_MS: number; export declare const REQUEST_TIMEOUT_LABEL = "60s"; export declare const BINARY_TRANSFER_TIMEOUT_LABEL = "5min"; export declare const networkErrorMessage: (e: unknown, label: string, timeoutLabel: string) => string; export type HttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE'; export type TimeoutTier = 'json' | 'binary'; export declare const timeoutLabelFor: (tier: TimeoutTier) => string; export declare const timeoutMsFor: (tier: TimeoutTier) => number;