import * as React from 'react'; import { ContainerState, AllowedComponentsProperties } from '@adobe/aem-react-editable-components'; import { ComponentType } from "react"; import { Model } from '@adobe/aem-spa-page-model-manager'; export interface HasBaseCssClass { baseCssClass?: string; } export interface CoreContainerProperties extends AllowedComponentsProperties, HasBaseCssClass { activeIndexFromAuthorPanel?: number; } export interface CoreContainerItem extends Model { 'cq:panelTitle': string; } export interface CoreContainerState extends ContainerState { } export interface AuthorPanelSwitchState { activeIndexFromAuthorPanel?: number; } export declare const withStandardBaseCssClass: (Component: React.ComponentType, defaultBaseCssClass: string) => React.ComponentType; export declare const withAuthorPanelSwitch: (Component: React.ComponentType) => React.ComponentType; //# sourceMappingURL=AbstractCoreContainerComponent.d.ts.map