import { EMPTY_VALUE } from './empty.const'; /** * An object containing default values for services. * @ignore @internal * * @remarks * This can then be merged in to passed-in services to provide them with * default configuration where an option has not been explicitly specified. */ export declare const SERVICE_METADATA_DEFAULTS: { readonly multiple: false; readonly eager: false; readonly scope: "container"; readonly value: typeof EMPTY_VALUE; readonly factory: undefined; };