import { NbDateService } from './date.service';
export declare class NbCalendarYearModelService<D> {
    protected dateService: NbDateService<D>;
    protected yearsInView: number;
    protected yearsInRow: number;
    constructor(dateService: NbDateService<D>);
    getYearsInView(): number;
    getYearsInRow(): number;
    getViewYears(viewYear: D): D[][];
    protected copyWithYear(year: number, date: D): D;
}
