/**
 * Options for managing the different div elements required by AdapTable
 */
export interface ContainerOptions {
    /**
     * Div containing AdapTable; string Id or HTMLElement
     *
     * @defaultValue "adaptable"
     * @gridInfoItem
     */
    adaptableContainer?: string | HTMLElement;
    /**
     * Div containing AG Grid instance; string Id or HTMLElement
     *
     * @defaultValue "grid"
     * @gridInfoItem
     */
    agGridContainer?: string | HTMLElement;
    /**
     * Name of div where popups appear
     *
     * @defaultValue undefined (centre of screen)
     * @gridInfoItem
     */
    modalContainer?: string | HTMLElement;
    /**
     * Div to show System Status messages; string Id or HTMLElement
     *
     * @defaultValue undefined
     * @gridInfoItem
     */
    systemStatusContainer?: string | HTMLElement;
    /**
     * Div to display Alert messages; string Id or HTMLElement
     *
     * @defaultValue undefined
     * @gridInfoItem
     */
    alertContainer?: string | HTMLElement;
}
