export interface CredentialStore { get(name: string): Promise; set(name: string, value: string): Promise; delete(name: string): Promise; setMany?(entries: Record): Promise; deleteMany?(names: string[]): Promise; }