import { EngineNameEnum } from './EngineNameEnum';
/** Input engine */
export interface Engine {
    /** Input engine ID */
    engineId: string;
    /** Indicates if engine will soon not be supported */
    isDeprecated: boolean;
    /** Software name */
    name: EngineNameEnum;
    /** Software version */
    version: string;
}
//# sourceMappingURL=Engine.d.ts.map