export declare enum ProviderError { NotFound = "Cannot find value of secret", ProviderInitializationError = "Failed to initialize secret provider" } interface Dictionary { [key: string]: T; } export type FetchedSecretsType = Dictionary; export default ProviderError;