export declare class ApiConfig { static dataverseApiUrl: string; static dataverseApiAuthMechanism: DataverseApiAuthMechanism; static dataverseApiKey?: string; static bearerTokenLocalStorageKey?: string; static init(dataverseApiUrl: string, dataverseApiAuthMechanism: DataverseApiAuthMechanism, dataverseApiKey?: string, bearerTokenLocalStorageKey?: string): void; } export declare enum DataverseApiAuthMechanism { API_KEY = "api-key", SESSION_COOKIE = "session-cookie", BEARER_TOKEN = "bearer-token" }