type Props = { /** @default 'Id:' */ label?: string; text: string; }; /** * Compact single-line ID row. Renders as a flat label + monospace-style value with ellipsis * overflow — useful for displaying an item ID that's typically long and not visually critical. * Skips the `` subgrid wrapping for a tighter look. */ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;