/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Represents the options for the pane which contains the treelist section.
 */
export interface TreeListPaneOptions {
    /**
     * Specifies if the user is allowed to hide the pane.
     */
    collapsible?: boolean;
    /**
     * Specifies if the pane is initially collapsed.
     */
    collapsed?: boolean;
}
/**
 * Represents the options for the pane which contains the timeline section.
 */
export interface TimelinePaneOptions extends TreeListPaneOptions {
    /**
     * Sets the initial size of the pane. Has to be between the `min` and `max` properties.
     */
    size?: string;
    /**
     * Sets the minimum possible size of the pane.
     */
    min?: string;
    /**
     * Sets the maximum possible size of the pane.
     */
    max?: string;
    /**
     * Specifies if the user is allowed to resize the pane.
     */
    resizable?: boolean;
}
/**
 * @hidden
 */
export declare const DEFAULT_TREELIST_PANE_SETTINGS: Readonly<{
    collapsible: true;
    collapsed: false;
}>;
/**
 * @hidden
 */
export declare const DEFAULT_TIMELINE_PANE_SETTINGS: Readonly<{
    collapsible: true;
    collapsed: false;
    size: "50%";
    resizable: true;
}>;
