/** * DateDisplay - Formats and displays dates * * Supports various format options and relative time display. */ /** Props for DateDisplay component */ export interface Props { /** Date to display (Date, ISO string, or timestamp) */ date: Date | string | number | null | undefined; /** Display format */ format?: 'short' | 'medium' | 'long' | 'relative'; /** Fallback text when date is null/undefined */ fallback?: string; /** Show time along with date */ showTime?: boolean; /** Locale for formatting (defaults to en-CA) */ locale?: string; /** Optional CSS class */ class?: string; } declare const DateDisplay: import("svelte").Component; type DateDisplay = ReturnType; export default DateDisplay; //# sourceMappingURL=DateDisplay.svelte.d.ts.map