import type { ChatAttachment, ResolveChatAttachmentOptions, ResolvedChatAttachmentContent } from '../chatAttachments'; /** * Resolves inline content previews for each attachment while enforcing global prompt-size limits. * * @param {ReadonlyArray} attachments - The attachments to resolve. * @param {ResolveChatAttachmentOptions} options - Options for resolution. * @returns {Promise>} The resolved contents. * * @public exported from `@promptbook/core` */ export declare function resolveChatAttachmentContents(attachments: ReadonlyArray, options?: ResolveChatAttachmentOptions): Promise>;