import { Base, Type } from "igniteui-react-core";
import { IVariantValueContainer } from "./IVariantValueContainer";
import { ST_VectorBaseType } from "./ST_VectorBaseType";
import { List$1 } from "igniteui-react-core";
/**
 * @hidden
 */
export declare class CT_Vector extends Base implements IVariantValueContainer {
    static $t: Type;
    readonly b: ST_VectorBaseType;
    readonly a: any[];
    constructor(a: number, b: number, c?: ST_VectorBaseType);
    constructor(a: number, b: List$1<any>, c?: ST_VectorBaseType);
    constructor(a: number, ..._rest: any[]);
    setValue(a: any, b: number): void;
}
