interface TimeAgoProps { date: Date | string | number; /** Refresh interval in ms. Default 60s. */ refreshMs?: number; locale?: string; class?: string; } declare const TimeAgo: import("svelte").Component; type TimeAgo = ReturnType; export default TimeAgo;