/** * @fileoverview Runtime approval task commands. * * The Runtime service owns identity, authorization, and task state transitions. * This module only validates CLI input, builds the verified HTTP contract, and * presents a sanitized result through the shared command framework. */ import type { CommandDefinition } from "../../framework/types.js"; declare const approvalTodo: CommandDefinition; declare const approvalTaskDetail: CommandDefinition; declare const approvalApprove: CommandDefinition; declare const approvalReject: CommandDefinition; declare const approvalTransfer: CommandDefinition; export declare const approvalDefinitions: CommandDefinition[]; export { approvalApprove, approvalReject, approvalTaskDetail, approvalTodo, approvalTransfer };