import { ApiDateRange, DateRangeType, TimeUnit, TimeWindow } from './types'; export default class DateRange { type: DateRangeType; from?: string; to?: string; window?: TimeWindow; constructor(attributes?: Partial); getDefaultWindow(): TimeWindow; getDateRangeTypeOptions(): Array; getTimeUnitOptions(): Array; getAttributes(): Partial; mergeAttributes(attributes: Partial): this; equals(otherRange: DateRange): boolean; isValid(): boolean; getApiFormat(): ApiDateRange; getCalendarMaxDate(): string; }