import { ConfigSyncAdapter } from '../sync-adapter'; import { ConfigSource } from '../../types'; /** * Loads configuration from object. */ export declare class PlainConfigAdapter implements ConfigSyncAdapter { private readonly _source; constructor(source: ConfigSource); load(): ConfigSource; }