import { Shift } from "../interface/business-time"; declare function isBetween(date: Date, shift: Shift, inclusivity?: "()" | "[)" | "(]" | "[]"): boolean; declare function startOf(date: Date | string): Date; declare function addDays(date: Date | string, days?: number): Date; export { isBetween, startOf, addDays };