import { AnyDateValue } from '../../types'; interface IsInTimeRangeInput { date: AnyDateValue; startTime?: string; endTime?: string; } /** Returns true if the given date's time is within the specified time range */ export declare function isInTimeRange({ date, startTime, endTime, }: IsInTimeRangeInput): boolean; export {};