import type { LineAccountCredentials, LineConfig } from './types.js'; export declare class LineCredentialManager { private configDir; private credentialsPath; constructor(configDir?: string); load(): Promise; save(config: LineConfig): Promise; getAccount(accountId?: string): Promise; setAccount(credentials: LineAccountCredentials): Promise; removeAccount(accountId: string): Promise; setCurrentAccount(accountId: string): Promise; listAccounts(): Promise>; clearAll(): Promise; } export { LineCredentialManager as CredentialManager }; //# sourceMappingURL=credential-manager.d.ts.map