import type { RichContent } from 'ricos-schema'; interface PlainTextOptions { urlShortener?: (url: string) => Promise; getVideoUrl?: (fileId: string) => Promise; getVideoEmbeddedUrl?: (url: string) => Promise; getAudioUrl?: (fileId: string) => Promise; getGifUrl?: (url: string) => Promise; addLinksToText?: boolean; delimiter?: string; } export declare const toPlainText: (content: RichContent, options?: PlainTextOptions) => Promise; export {}; //# sourceMappingURL=toPlainText.d.ts.map