import { Binding } from './binding'; import { Constructor } from './lang'; export declare function bind(type: any): { toValue: (toValue: T) => Binding; toFactory: (toFactory: Function, dependencies?: any[]) => Binding; toClass: (toClass: Constructor) => Binding; };