import { ValueType, Type } from "./type";
/**
 * @hidden
 */
export declare class ValueTuple$2<T1, T2> extends ValueType {
    static $t: Type;
    protected $t1: Type;
    protected $t2: Type;
    constructor($t1: Type, $t2: Type, a: number, b: T1, c: T2);
    constructor($t1: Type, $t2: Type);
    constructor($t1: Type, $t2: Type, a: number, ..._rest: any[]);
    a: T1;
    b: T2;
}
