import { PanelDefinition } from '@perses-dev/core'; import { StateCreator } from 'zustand'; import { Middleware } from './common'; /** * Slice with the state of Panels, along with any actions that modify only the Panels state. */ export interface PanelSlice { panels: Record; } /** * Curried function for creating the PanelSlice. */ export declare function createPanelSlice(panels: PanelSlice['panels']): StateCreator; //# sourceMappingURL=panel-slice.d.ts.map