/** * Svelte store that provides a localized date/time formatter. * * @returns {import('svelte/store').Readable<(...args: Parameters) => string>} * A store containing a date/time formatting function bound to the active locale. */ export declare const useDate: () => import("svelte/store").Readable<(date: string | number | Date, options?: import("@intlayer/core/formatters").DateTimePreset | (Intl.DateTimeFormatOptions & { locale?: import("intlayer").LocalesValues; }) | undefined) => string>;