declare const covertTZOffsetFromMinutes: (tzOffset: number) => string; declare const covertTZOffsetToMinutes: (tzStr: string) => number; declare const localTimeZone: () => string; declare const getWeekDayNames: (locale?: string, format?: 'long' | 'short' | 'narrow' | undefined) => string[]; declare const getRepeatTimeSlots: (timeZone: string, start: string, end: string, repeat: string) => string[][]; declare const sortAndUniqueExcludes: (excludes: string[], timeZone: string) => string[]; export { covertTZOffsetFromMinutes, covertTZOffsetToMinutes, localTimeZone, getWeekDayNames, getRepeatTimeSlots, sortAndUniqueExcludes, };