import { type CommandId, type ExecutorCommand, type WorkerId } from '@platform-modules/chatgpt-orchestrator-protocol';
export type SteeringReason = 'checkpoint' | 'corrective';
export declare function deliveryCommandId(idempotencyKey: string): CommandId;
export declare function createSteeringCommand(input: {
    workerId: WorkerId;
    prompt: string;
    reason: SteeringReason;
    idempotencyKey: string;
    deadline?: string;
}): Extract<ExecutorCommand, {
    type: 'conversation.steer';
}>;
//# sourceMappingURL=steering.d.ts.map