import { NativeAuthSigner } from "../../auth/native.auth.signer"; export interface ApiSettingsBasicCredentials { username: string; password: string; } export declare class ApiSettings { timeout?: number; skipRedirects?: boolean; responseType?: 'arraybuffer' | 'json'; headers?: Record; params?: any; httpsAgent?: any; auth?: ApiSettingsBasicCredentials; nativeAuthSigner?: NativeAuthSigner; validateStatus?: (status: number) => boolean; }