import { ConnectionOptions } from "./ConnectionOptions"; export declare class ConnectionOptionsReader { protected options?: { root?: string | undefined; configName?: string | undefined; } | undefined; constructor(options?: { root?: string | undefined; configName?: string | undefined; } | undefined); all(): Promise; get(name: string): Promise; has(name: string): Promise; protected load(): Promise; protected normalizeConnectionOptions(connectionOptions: ConnectionOptions | ConnectionOptions[]): ConnectionOptions[]; protected readonly baseFilePath: string; protected readonly baseDirectory: string; protected readonly baseConfigName: string; }