/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { DateService } from './date.service'; import { CalendarRange } from '../type'; export declare class RangeDateService { private dateService; constructor(dateService: DateService); createRange(range: CalendarRange, date: D): CalendarRange; private createRangeForStart; private createRangeForStartEnd; }