export declare class OcaVariant { /** * A class holding the value of an OcaVariant. * @class OcaVariant */ constructor(index: number, value: unknown); /** * The index of the variant alternative. * @type number */ Index: number; /** * The value. * @type any */ Value: unknown; }