export default abstract class ProviderBase { abstract getSecret(key: string): Promise; abstract getAll(): Promise>; }