import { IBindingContext } from '../interface/exported';
export declare class BindingContext {
    $context: any;
    $overrideContext: IBindingContext;
    $event: any;
    __bindingContext: boolean;
    constructor($context: any, $overrideContext: IBindingContext, $event: any);
}
export declare function createBindingContext(context: Object, overrideContext?: IBindingContext, event?: any): IBindingContext;
