import type { ResolvedChatAttachmentContent } from '../chatAttachments';
/**
 * Formats inline attachment-content context section for the model.
 *
 * @param {ReadonlyArray<ResolvedChatAttachmentContent>} resolvedContents - The resolved contents to format.
 * @returns {string} The formatted context.
 *
 * @public exported from `@promptbook/core`
 */
export declare function formatChatAttachmentContentContext(resolvedContents: ReadonlyArray<ResolvedChatAttachmentContent>): string;
