import type { AttachmentPayload, UserContentBlock } from "../types"; /** * Construct the content blocks for a user message. * * Combines the prompt text with any attachments into the order expected by Claude: * selection/context blocks first, followed by attachments, then the user's message. */ export declare function buildUserMessageContent(prompt: string, attachments: AttachmentPayload[] | undefined): UserContentBlock[]; //# sourceMappingURL=build-user-message-content.d.ts.map