import { BaseState } from './BaseState';
/**
 * Adaptable State Section for the User Interface
 *
 * Controls the visibility and behaviour of AdapTable UI elements
 */
export interface UserInterfaceState extends BaseState {
    /**
     * Hides all AdapTable UI elements (i.e. Dashboard, Tool Panel, Status Bar, Column & Context Menus etc.)
     *
     * @defaultValue false
     */
    HideAdaptableUI?: boolean;
}
