import type { AgentSendOpts } from './types.js'; export interface PreparedScheduledTurn { userPrompt: string; model?: string; workspacePath: string; userId?: string; artifactsRel?: string; artifactsAbs?: string; sendOpts: AgentSendOpts; } export declare function prepareScheduledTurn(input: { agent: string; prompt: string; creatorId?: string; }): PreparedScheduledTurn; //# sourceMappingURL=schedule-run.d.ts.map