import { type Type } from "@tsed/core";
import type { ConfigSource, ConfigSourceOptions } from "../interfaces/ConfigSource.js";
export declare function getConfigSources(configSources: (Type<ConfigSource<any>> | ConfigSourceOptions)[]): Map<string, ConfigSourceOptions<any> & {
    instance: ConfigSource<any>;
    data: Record<string, any>;
}>;
