import { ApplicationService } from "./application-service.js"; import { LoggerService } from "./logger-service.js"; import { PromptService } from "./prompt-service.js"; import { StorageService } from "./storage-service.js"; /** * Service for managing OVH consumer key credentials. * Handles obtaining and storing consumer keys for API authentication. */ export declare class CredentialsService { private logger; private promptService; private storageService; private applicationService; constructor(logger: LoggerService, promptService: PromptService, storageService: StorageService, applicationService: ApplicationService); /** * Updates consumer key credentials through OVH API. * Requests consumer key, opens validation URL, and saves credentials. */ updateCredentials(): Promise; }