import { Instruction } from '../types/Instruction';
export declare class AddUserRequest {
    comment: string;
    environmentKey?: string;
    instructions: Instruction[];
    constructor(init?: Partial<AddUserRequest>);
}
