export interface StatStripItem { id: string; label: string; value: string | number; hint?: string; } interface StatStripProps { items?: StatStripItem[]; class?: string; } declare const StatStrip: import("svelte").Component; type StatStrip = ReturnType; export default StatStrip;