interface TimeProps { date: Date | string | number; locale?: string; /** Intl.DateTimeFormat options preset */ format?: 'short' | 'medium' | 'long' | 'time' | 'datetime'; class?: string; } declare const Time: import("svelte").Component; type Time = ReturnType; export default Time;