import { DayOfWeek } from '../components'; export declare const parseHourMinutes: (input: string) => { hoursMilitary: string; minutes: string; }; export declare type Time = { hour: string; minutes: string; amPm: string; }; export declare type Date = { month: string; day: string; }; export declare const getFormattedTime: (input: string) => Time; export declare const convertTimeToString: (time: Time, isTwentyFourHourTime?: boolean) => string; export declare const HOURS: string[]; export declare const HOURS_MILITARY: string[]; export declare const MINUTES: string[]; export declare const convertDaysToShortDescription: (days: DayOfWeek[]) => string | null;