import { ServiceMetadata } from './service-metadata.interface'; /** * The public ServiceOptions is partial object of ServiceMetadata and either one * of the following is set: `type`, `factory`, `value` but not more than one. */ export declare type ServiceOptions = Omit>, 'type' | 'factory'> | Omit>, 'value' | 'factory'> | Omit>, 'value' | 'type'>;