import * as svelte_store from 'svelte/store'; import TimescapeManager, { Options, DateType, RangeOptions } from './index.cjs'; export { $NOW as NOW } from './index.cjs'; declare const createTimescape: (options?: Options) => { readonly _manager: TimescapeManager; readonly inputProps: (element: HTMLInputElement, type: DateType) => HTMLInputElement | undefined; readonly rootProps: (element: HTMLElement) => void; readonly options: svelte_store.Writable; readonly update: (this: void, updater: svelte_store.Updater) => void; }; declare const createTimescapeRange: (options?: RangeOptions) => { readonly fromInputProps: (element: HTMLInputElement, type: DateType) => HTMLInputElement | undefined; readonly toInputProps: (element: HTMLInputElement, type: DateType) => HTMLInputElement | undefined; readonly from: { readonly inputProps: (element: HTMLInputElement, type: DateType) => HTMLInputElement | undefined; readonly options: svelte_store.Writable; readonly update: (this: void, updater: svelte_store.Updater) => void; }; readonly to: { readonly inputProps: (element: HTMLInputElement, type: DateType) => HTMLInputElement | undefined; readonly options: svelte_store.Writable; readonly update: (this: void, updater: svelte_store.Updater) => void; }; readonly rangeRootProps: (element: HTMLElement) => void; }; export { DateType, Options, RangeOptions, createTimescape, createTimescapeRange };