/** Robot */
export interface Robot {
    /** The criticity of this robot */
    criticity: string;
    /** Description of this robot */
    description?: string;
    /** Is this robot enabled */
    enabled: boolean;
    /** The name of this robot */
    name: string;
    /** The type of this robot */
    type: string;
}
//# sourceMappingURL=Robot.d.ts.map