import * as solid_js_store from 'solid-js/store'; import TimescapeManager, { Options, DateType, RangeOptions } from './index.js'; export { $NOW } from './index.js'; declare const useTimescape: (options?: Options) => { readonly _manager: TimescapeManager; readonly getInputProps: (type: DateType) => { ref: (element: HTMLInputElement | null) => HTMLInputElement | null | undefined; }; readonly getRootProps: () => { ref: (element: HTMLElement | null) => void | null; }; readonly update: solid_js_store.SetStoreFunction; readonly options: Options; }; declare const useTimescapeRange: (options?: RangeOptions) => { readonly getRootProps: () => { ref: (element: HTMLElement | null) => void; }; readonly from: { readonly getInputProps: (type: DateType) => { ref: (element: HTMLInputElement | null) => HTMLInputElement | null | undefined; }; readonly options: Options; readonly update: solid_js_store.SetStoreFunction; }; readonly to: { readonly getInputProps: (type: DateType) => { ref: (element: HTMLInputElement | null) => HTMLInputElement | null | undefined; }; readonly options: Options; readonly update: solid_js_store.SetStoreFunction; }; }; export { DateType, Options, RangeOptions, useTimescape, useTimescapeRange };