import type { RichInlineItem } from "@chenglou/pretext/rich-inline"; type $$ComponentProps = { items: RichInlineItem[]; lineHeight?: number; clamping?: number; lineCount?: number; naturalWidth?: number; overflow?: boolean; }; declare const RichText: import("svelte").Component< $$ComponentProps, {}, "lineCount" | "naturalWidth" | "overflow" >; type RichText = ReturnType; export default RichText;