import type { Snippet } from 'svelte'; type Props = { label: string; text?: string | Snippet | null; /** Maximum lines before truncating with line-clamp. @default 1 */ maxLines?: number; }; /** * Text content row with line-clamp. Pass `text` as either a string (gets a `title=` tooltip for * overflow) or a snippet for custom markup. `-` placeholder when text is null / undefined. */ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;