declare const STORAGE_TYPES: {
    readonly redis: "redis";
    readonly redisCluster: "redis-cluster";
    readonly mysql: "mysql";
};
declare const storageTypeValues: ("redis" | "redis-cluster" | "mysql")[];
declare const ERROR_MESSAGES: {
    readonly unsupportedProxyCacheType: `Unsupported proxyCache type [possible values: ${string}]`;
    readonly invalidFormat: "Invalid format";
};

export { ERROR_MESSAGES, STORAGE_TYPES, storageTypeValues };
