/**
 * @license
 *
 * Copyright IBM Corp. 2023, 2024
 *
 * This source code is licensed under the Apache-2.0 license found in the
 * LICENSE file in the root directory of this source tree.
 */
/**
 * Modal size.
 */
export declare enum SIDE_PANEL_SIZE {
    /**
     * Extra small size.
     */
    EXTRA_SMALL = "xs",
    /**
     * Small size.
     */
    SMALL = "sm",
    /**
     * Medium size.
     */
    MEDIUM = "md",
    /**
     * Large size.
     */
    LARGE = "lg",
    /**
     * 2X-Large size.
     */
    EXTRA_EXTRA_LARGE = "2xl"
}
export declare enum SIDE_PANEL_PLACEMENT {
    /** right / default */
    RIGHT = "right",
    /** left  */
    LEFT = "left"
}
