/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
export interface KendoAngularSchedulerSchema {
    name: string;
    path?: string;
    project?: string;
    module?: string;
    selector?: string;
    prefix: string;
    style?: "css" | "scss" | "sass" | "less" | "none";
    flat?: boolean;
    type?: string;
    displayBlock?: boolean;
    inlineStyle: boolean;
    inlineTemplate: boolean;
    skipTests: boolean;
    dayView: boolean;
    weekView: boolean;
    monthView: boolean;
    timelineView: boolean;
    agendaView: boolean;
    standalone: undefined | boolean;
}
