import { DateRange } from '../../date.types'; export declare const findMatchingPreset: (range: DateRange) => { type: "RELATIVE" | "SINCE"; offset: { type: import('../../date.types').RelativeUnits; value: number; }; duration: import('../../date.types').Duration; from?: import('../../date.types').NullableDateLimit; to?: import('../../date.types').NullableDateLimit; key: import('../../date.types').RangeKey | string; future?: boolean; filter?: import('../../date.types').DateFilter; translationKey?: string; id?: React.ReactText; timestamp?: Date; } | undefined;