import { DropDownItem } from '../models/drop-down-item.interface'; export declare const DAY_DROPDOWN_ITEMS: DropDownItem[]; /** * get day dropdown items * @param defaultSelectedValue the value should be one of the DAY_DROPDOWN_ITEMS value items */ export declare function getDaysDropdownItems(defaultSelectedValue?: string): DropDownItem[]; /** * Since we are using the new sing-drop-down, it expect to receive an object that include value and title properties, * We only get from the server the gmtOffset value so we need to find the correct object that include the title param before we using it * @param selectedValue */ export declare function getCorrectDayObjByValue(selectedValue: string): DropDownItem; //# sourceMappingURL=day-dropdown-items.const.d.ts.map