import type { HTMLAttributes } from 'svelte/elements'; type $$ComponentProps = HTMLAttributes & { data?: { title: string; value?: string | number | number[] | null; unit?: string; fmt?: string; condition?: boolean | number | null; tooltip?: string; }[]; title?: string; fallback?: string; fmt?: string; }; declare const InfoCard: import("svelte").Component<$$ComponentProps, {}, "">; type InfoCard = ReturnType; export default InfoCard;