import { Moment } from 'moment'; declare const SELECTOR_POSITION: { TOP: string; BOTTOM: string; }; declare type DatePickerSelectorProps = { position: string; }; declare type SingleDatePickerProps = { date: Moment | undefined; dateFormat: string; placeholder: string | undefined; elementId: string; onChange: (date: Moment) => void; onFocus?: (focused: boolean) => void; minDate?: Moment | null | undefined; maxDate?: Moment | null | undefined; position?: string | undefined; }; declare type DatePickerControlsProps = { elementId: string; placeholder: string; onStartChange: () => void; onChange: (date: string) => void; onEndChange: (date: string) => void; value: Moment | null | undefined; dateFormat: string; regMask?: RegExp; }; export { SingleDatePickerProps, DatePickerControlsProps, DatePickerSelectorProps, SELECTOR_POSITION, };