import * as React from 'react'; import { DateTimeInputProps } from '../types'; export declare const createResetHandler: ({ props, dispatch, }: { dispatch: React.Dispatch | import("../../../commonTypes").Action<"SET_FOCUSED", boolean> | import("../../../commonTypes").Action<"SET_OPEN", boolean> | import("../../../commonTypes").Action<"SET_PREV_DATE", Date | null> | import("../../../commonTypes").Action<"SET_VALUE", string> | import("../../../commonTypes").Action<"SET_VIEW_DATE", Date> | import("../../../commonTypes").Action<"SET_VIEW_TYPE", "dates" | "months" | "years">>; props: DateTimeInputProps; }) => () => void;