export interface SchedulePromptMeta { model?: string; artifacts?: string; } export declare function wrapSchedulePrompt(body: string, meta: SchedulePromptMeta): string; export declare function parseSchedulePrompt(raw: string): { meta: SchedulePromptMeta; body: string; }; /** Workspace-relative artifacts dir, or null when the value would escape. */ export declare function sanitizeArtifactsRel(raw: string): string | null; export declare function artifactsInstruction(rel: string, abs?: string): string; //# sourceMappingURL=schedule-prompt.d.ts.map