import { Container } from 'inversify';
import { IBaseBinding } from './Binding';
export interface IValueBinding extends IBaseBinding {
    useValue: any;
}
export declare const bindValue: (container: Container, { provide, useValue }: IValueBinding) => void;
