import { DataSourceOptions } from 'typeorm'; export declare enum DynamicConfigProvider { MODULE_OPTIONS = "DYNAMIC_CONFIG_MODULE_OPTIONS", KEY_TYPE = "DYNAMIC_CONFIG_KEY_TYPE" } export declare type DynamicConfigKeyType = Record; export interface DynamicConfigModuleOptions { database: DataSourceOptions; keyType: Key; } export interface DynamicConfigOpts { transformer?: (val: string) => T; fallback: F; } //# sourceMappingURL=dynamic-config.types.d.ts.map