import type { ChannelConfig, ChannelCredentials, ChannelWorkspaceEntry } from './types.js'; export declare class ChannelCredentialManager { private configDir; private credentialsPath; constructor(configDir?: string); load(): Promise; save(config: ChannelConfig): Promise; getCredentials(workspaceId?: string): Promise; setCredentials(entry: ChannelWorkspaceEntry): Promise; removeWorkspace(workspaceId: string): Promise; setCurrent(workspaceId: string): Promise; listAll(): Promise>; clearCredentials(): Promise; } //# sourceMappingURL=credential-manager.d.ts.map