import type { UserMessage } from "../types.js"; /** * Builds the durable record that supersedes project instructions the model was given earlier. * Earlier records are never rewritten, so the original instructions stay readable in history. */ export declare function createAgentsMdReplacementMessage(options: { id: string; instructions?: string; }): UserMessage;