/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ChangeDetectorRef } from '@angular/core';
import { LocalizationService } from '@progress/kendo-angular-l10n';
import { DateRange, OngoingEventsSettings } from '../../types';
import { ViewContextService } from '../view-context.service';
import { ViewStateService } from '../view-state.service';
import { ConfigurationViewBase } from '../common/configuration-view-base';
import { IntlService } from '@progress/kendo-angular-intl';
import { Day } from '@progress/kendo-date-math';
import * as i0 from "@angular/core";
/**
 * Represents the component that renders the **Year** view in the Scheduler.
 *
 * @example
 * ```html
 * <kendo-scheduler>
 *      <kendo-scheduler-year-view></kendo-scheduler-year-view>
 * </kendo-scheduler>
 * ```
 */
export declare class YearViewComponent extends ConfigurationViewBase {
    private intl;
    /**
     * Sets the long-date format for the selected year in the Scheduler toolbar.
     * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
     * @default '{0:yyy}'
     */
    selectedDateFormat: string;
    /**
     * Sets the short-date format for the selected year in the Scheduler toolbar.
     * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
     * @default '{0:yyy}'
     */
    selectedShortDateFormat: string;
    /**
     * @hidden
     */
    get title(): string;
    /**
     * @hidden
     */
    highlightOngoingEvents: boolean | OngoingEventsSettings;
    /**
     * The invariant name for this view.
     * @default 'year'
     */
    readonly name: string;
    /**
     * @hidden
     * Used to override the hiddenDays as this options is not applicable for Year view.
     */
    set hiddenDays(_hiddenDays: Day[]);
    constructor(localization: LocalizationService, changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService);
    /**
     * @hidden
     */
    dateRange(date: Date): DateRange;
    /**
     * @hidden
     */
    newRange(date: Date, direction?: 1 | -1): Date;
    static ɵfac: i0.ɵɵFactoryDeclaration<YearViewComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<YearViewComponent, "kendo-scheduler-year-view", never, { "selectedDateFormat": { "alias": "selectedDateFormat"; "required": false; }; "selectedShortDateFormat": { "alias": "selectedShortDateFormat"; "required": false; }; "highlightOngoingEvents": { "alias": "highlightOngoingEvents"; "required": false; }; }, {}, never, never, true, never>;
}
