import { IntlShape } from 'react-intl'; import { Texts } from './DateRangePicker.types'; import { DateRange } from './date.types'; import { default as END_OF } from './dateUtils/endOf'; import { default as START_OF } from './dateUtils/startOf'; /** * Re-exported rather than implemented here. This package used to carry its own copy, which took * `Math.abs(offset) % 60` of an offset in *milliseconds* — so every zone that is not a whole number * of hours ahead of UTC (India, Adelaide, Kathmandu, Chatham, Newfoundland) encoded as `:00` * minutes. It also looked the offset up against the date's UTC fields rather than the wall clock it * carries, which picked the wrong side of a DST transition. * * Kept exported because `utils` is part of this package's public surface (`export * as utils`). */ export { toIsoString } from '@synerise/ds-core'; export { END_OF, START_OF }; export declare function toIsoStringWithoutZone(date: Date): string; export declare const normalizeRange: (range: DateRange) => DateRange; export declare const getDefaultTexts: (intl: IntlShape, disableDefault?: boolean, texts?: Partial) => Texts; export declare const DEFAULT_RANGE: DateRange;