interface IsBetweenOptions { inclusive?: boolean; } interface IsBetween { /** * check that date is Between another date */ (actual: T, start: T, end: T, options?: IsBetweenOptions): void; (actual: T, start: T, end: T, options?: IsBetweenOptions): void; } export declare const isBetween: IsBetween, notBetween: IsBetween; export {}; //# sourceMappingURL=is-between.d.ts.map