/**
 * Copyright IBM Corp. 2024, 2025
 */
type BottomPanelDataState = {
    isExpanded: boolean;
    currentTabIndex: number;
};
type BottomPanelDataActions = {
    setIsExpanded: (isExpanded: boolean) => void;
    setCurrentTabIndex: (currentTabIndex: number) => void;
};
export type BottomPanelDataStore = BottomPanelDataState & BottomPanelDataActions;
export {};
//# sourceMappingURL=bottom-panel-info.store.model.d.ts.map