interface Stat { label: string; value: string; } interface Props { title?: string; stats?: Stat[]; } declare const DemoBlogStats: import("svelte").Component; type DemoBlogStats = ReturnType; export default DemoBlogStats;