interface Props { value: string | number | Date | null | undefined; locale?: string; options?: Intl.DateTimeFormatOptions; } declare const DateField: import("svelte").Component; type DateField = ReturnType; export default DateField;