import { InjectionToken } from '@angular/core';
import { Range } from '../model/model';
import { Subject } from 'rxjs';
import * as i0 from "@angular/core";
export declare const DATE: InjectionToken<Date>;
export declare class RangeStoreService {
    private _fromDate;
    private _toDate;
    rangeUpdate$: Subject<Range>;
    constructor(_fromDate: Date, _toDate: Date);
    get fromDate(): Date;
    get toDate(): Date;
    updateRange(fromDate?: Date, toDate?: Date): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<RangeStoreService, never>;
    static ɵprov: i0.ɵɵInjectableDeclaration<RangeStoreService>;
}
