export declare const DEFAULT_API_URL: string; export type Config = { apiUrl: string; credentials: string; }; export declare function getConfigFilePath(): string; export declare function getConfig(): Config; export declare function setConfig(creds: string, host: string): { apiUrl: string; credentials: string; }; /** * @deprecated Use getConfig() */ export declare function getCreds(): string; /** * @deprecated Use getConfig() */ export declare function getConfigField(name: 'apiUrl' | 'credentials'): any; //# sourceMappingURL=config.d.ts.map