/**-----------------------------------------------------------------------------------------
* 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 { TimelineBase } from './timeline-base';
import { ViewContextService } from '../view-context.service';
import { ViewStateService } from '../view-state.service';
import { Day } from '@progress/kendo-date-math';
import * as i0 from "@angular/core";
/**
 * Represents the component that renders the **Timeline** view in the Scheduler.
 *
 * @example
 * ```html
 * <kendo-scheduler>
 *      <kendo-scheduler-timeline-view></kendo-scheduler-timeline-view>
 * </kendo-scheduler>
 * ```
 */
export declare class TimelineViewComponent extends TimelineBase {
    /**
     * @hidden
     */
    get title(): string;
    /**
     * Sets the long-date format for the selected date 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).
     * If `numberOfDays` is greater than 1, the default format displays a range: `'{0:D} - {1:D}'`, where `0` is the start and `1` is the end date.
     * @default '{0:D}'
     */
    set selectedDateFormat(format: string);
    get selectedDateFormat(): string;
    private _selectedDateFormat;
    /**
     * Sets the short-date format for the selected date 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).
     * If `numberOfDays` is greater than 1, the default format displays a range: `'{0:d} - {1:d}'`, where `0` is the start and `1` is the end date.
     * @default '{0:d}'
     */
    set selectedShortDateFormat(format: string);
    get selectedShortDateFormat(): string;
    private _selectedShortDateFormat;
    /**
     * Sets the number of days to render in the view.
     * If the value is less than or equal to 0, it defaults to 1.
     * @default 1
     */
    set numberOfDays(days: number);
    get numberOfDays(): number;
    private _numberOfDays;
    /**
     * The invariant name for this view.
     * @default 'timeline'
     */
    readonly name: string;
    /**
     * @hidden
     * Used to override the hiddenDays as this options is not applicable for Timeline view.
     */
    set hiddenDays(_hiddenDays: Day[]);
    constructor(localization: LocalizationService, changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService);
    static ɵfac: i0.ɵɵFactoryDeclaration<TimelineViewComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<TimelineViewComponent, "kendo-scheduler-timeline-view", never, { "selectedDateFormat": { "alias": "selectedDateFormat"; "required": false; }; "selectedShortDateFormat": { "alias": "selectedShortDateFormat"; "required": false; }; "numberOfDays": { "alias": "numberOfDays"; "required": false; }; }, {}, never, never, true, never>;
}
