///
///
import { ControlPanelComponent } from '../../interfaces/interfaces';
import { JsxNode, PublicLitElement as LitElement, TargetedEvent } from '@arcgis/lumina';
/** @slot [components] - A slot for all the components this control panel manages. */
export declare class InstantAppsControlPanel extends LitElement {
/** Determine which widgets or components to display in the control panel */
components: ControlPanelComponent[];
/**
* A reference to the MapView or SceneView
*
* @required
*/
view: __esri.MapView | __esri.SceneView;
}