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