import type { FlowExecution, InstanceStatus } from "@skaile/workspaces/types"; /** * Mirror an instance's flow execution into the instance status. * Terminal flow statuses win; gate nodes surface next (approval before * input); `paused` is not expected inside an instance (pausing is a * group-level concept) and is treated as live. */ export declare function deriveInstanceStatus(flow: FlowExecution): InstanceStatus; //# sourceMappingURL=derive-instance-status.d.ts.map