/**-----------------------------------------------------------------------------------------
* 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 { ViewContextService } from '../view-context.service';
import { ViewStateService } from '../view-state.service';
import { DayViewComponent } from './day-view.component';
import { Day } from '@progress/kendo-date-math';
import * as i0 from "@angular/core";
/**
 * Represents the component that renders the **Multi-Day** view in the Scheduler.
 *
 * @example
 * ```html
 * <kendo-scheduler>
 *      <kendo-scheduler-multi-day-view></kendo-scheduler-multi-day-view>
 * </kendo-scheduler>
 * ```
 */
export declare class MultiDayViewComponent extends DayViewComponent {
    /**
     * 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).
     * The default value is `'{0:D} - {1:D}'` for multiple days and `'{0:D}'` for a single day.
     * @default '{0:D} - {1:D}'
     */
    set selectedDateFormat(value: string);
    get selectedDateFormat(): string;
    /**
     * 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).
     * The default value is `'{0:d} - {1:d}'` for multiple days and `'{0:d}'` for a single day.
     * @default '{0:d} - {1:d}'
     */
    set selectedShortDateFormat(value: string);
    get selectedShortDateFormat(): string;
    /**
     * Sets the number of days to render in the view.
     * @default 1
     */
    numberOfDays: number;
    /**
     * Specifies the days that will be hidden from the view.
     * Accepts an array of `Day` enum values.
    **/
    set hiddenDays(value: Day[]);
    get hiddenDays(): Day[];
    /**
     * @hidden
     */
    get title(): string;
    /**
     * The invariant name for this view.
     * @default 'multiDay'
     */
    readonly name: string;
    private get defaultDateFormat();
    private get defaultShortDateFormat();
    private dateFormat;
    private shortDateFormat;
    constructor(localization: LocalizationService, changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService);
    static ɵfac: i0.ɵɵFactoryDeclaration<MultiDayViewComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<MultiDayViewComponent, "kendo-scheduler-multi-day-view", never, { "selectedDateFormat": { "alias": "selectedDateFormat"; "required": false; }; "selectedShortDateFormat": { "alias": "selectedShortDateFormat"; "required": false; }; "numberOfDays": { "alias": "numberOfDays"; "required": false; }; "hiddenDays": { "alias": "hiddenDays"; "required": false; }; }, {}, never, never, true, never>;
}
