import { Action } from '../../commonTypes'; export declare const stateActionTypes: { readonly SET_DATE: "SET_DATE"; readonly SET_FOCUSED: "SET_FOCUSED"; readonly SET_OPEN: "SET_OPEN"; readonly SET_PREV_DATE: "SET_PREV_DATE"; readonly SET_VALUE: "SET_VALUE"; readonly SET_VIEW_DATE: "SET_VIEW_DATE"; readonly SET_VIEW_TYPE: "SET_VIEW_TYPE"; }; export declare const setDate: (newDate: Date | null) => Action<"SET_DATE", Date | null>; export declare const setPrevDate: (prevDate: Date | null) => Action<"SET_PREV_DATE", Date | null>; export declare const setValue: (newValue: string) => Action<"SET_VALUE", string>; export declare const setFocused: (newFocused: boolean) => Action<"SET_FOCUSED", boolean>; export declare const setOpen: (newOpen: boolean) => Action<"SET_OPEN", boolean>; export declare const setViewDate: (newViewDate: Date) => Action<"SET_VIEW_DATE", Date>; export declare const setViewType: (newViewType: "dates" | "months" | "years") => Action<"SET_VIEW_TYPE", "dates" | "months" | "years">;