import { Base, Type } from "./type";
import { PropertyPath } from "./PropertyPath";
/**
 * @hidden
 */
export declare class Binding extends Base {
    static $t: Type;
    constructor(a: number);
    constructor(a: number, b: string);
    constructor(a: number, ..._rest: any[]);
    c: any;
    get d(): any;
    set d(a: any);
    e: PropertyPath;
    get f(): PropertyPath;
    set f(a: PropertyPath);
    a: boolean;
    get b(): boolean;
    set b(a: boolean);
}
