import { Binding, ContainerInterface, FactoryDetails, ServiceIdentifier } from '../interfaces'; export declare const multiBindToService: (container: ContainerInterface) => (service: ServiceIdentifier) => (...types: ServiceIdentifier[]) => void; export declare const ensureFullyBound: (binding: Binding) => void; export declare const getFactoryDetails: (binding: Binding) => FactoryDetails;