type Mode = 'absolute' | 'relative' | 'both'; type Style = 'long' | 'short' | 'narrow'; interface Props { value: Date | string | number; mode?: Mode; relativeStyle?: Style; updateInterval?: number; locale?: string; dateOptions?: Intl.DateTimeFormatOptions; separator?: string; class?: string; 'aria-label'?: string; } declare const Timestamp: import("svelte").Component; type Timestamp = ReturnType; export default Timestamp;