import { Entity } from '@lastolivegames/becsy'; /** * A binding between two entities. */ export declare class Binding { from: Entity; to: Entity; constructor(props?: Partial); }