import { RadixOnInteractOutsideEvent } from "../../Popover/types"; import { OnChangeReturnType } from "./types"; export declare function shortHandToDateObject(date: string): Date; /** * This function is used to determine if, once the user clicks outside the datepicker whether or not the element they clicked on was from a specfic list of "allowed" element ids. For example, we still want them to be able to focus the text input field, so we pass its id. */ export declare const handleOnInteractOutside: (setIsOpen: (isOpen: boolean) => void, ...allowedElementIds: string[]) => (event: RadixOnInteractOutsideEvent) => void; export declare const convertISOToAusDate: (date?: string) => string; export declare const convertAusToISODate: (date?: string) => string; export declare function createEventObject(textValue: string): OnChangeReturnType;