/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * @hidden
 *
 * Represents the slot base properties.
 */
export interface Slot {
    /**
     * The beginning of the slot.
     */
    start: Date;
    /**
     * The end of the slot.
     */
    end: Date;
    /**
     * Formatted text to be displayed in the cell.
     */
    text: string;
    /**
     * The number of columns the slot should span.
     */
    span: number;
    /**
     * Indicates if the slot is a working hour/day.
     */
    isWorking?: boolean;
    /**
     * The configured slot width.
     *
     * @default 100
     */
    slotWidth?: number;
}
