import type { Snippet } from 'svelte'; interface TruncateProps { lines?: 1 | 2 | 3 | 4; /** Full text for tooltip / native title */ title?: string; tooltip?: boolean; /** Only show tooltip when content actually overflows */ tooltipWhenTruncated?: boolean; class?: string; children?: Snippet; } declare const Truncate: import("svelte").Component; type Truncate = ReturnType; export default Truncate;