import { SelectedTimeState, TimeRange } from './absolute-time-picker-dropdown-input.types';
export declare const getSingleInputDate: (selectedTime: SelectedTimeState, timezoneName: string) => string;
export declare const getRangeInputValues: (selectedTime: SelectedTimeState, timezoneName: string) => TimeRange;
export declare const getSingleCalendarDate: (inputValue: string) => string[];
export declare const getRangeCalendarDates: (rangeInputValues: TimeRange) => string[];
