export declare class Instruction {
    kind: string;
    variationId?: string;
    values: string[];
    constructor(init?: Partial<Instruction>);
}
