import type { DatePickerDates } from './useDates';
export type LastEventCallCache = {
    startDate?: DatePickerDates['startDate'];
    endDate?: DatePickerDates['startDate'];
};
type UncachedDates = LastEventCallCache;
export default function useLastEventCallCache(uncachedDates: UncachedDates): readonly [LastEventCallCache, import("react").Dispatch<import("react").SetStateAction<LastEventCallCache>>];
export {};
