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