import { RobotLifecycleStage } from '@prisma/client';
export declare const STAGE_TRANSITIONS: Record<RobotLifecycleStage, RobotLifecycleStage[]>;
export declare function isTransitionAllowed(fromStage: RobotLifecycleStage, toStage: RobotLifecycleStage): boolean;
export declare function stageDepartment(stage: RobotLifecycleStage): string;
