import type { IPivotPanelDataInfo } from '@univerjs-pro/sheets-pivot'; import type { Nullable } from '@univerjs/core'; import type { IDraggableLocation } from './PivotDnd'; interface IPivotPanelProps { pivotTableId: string; version: number; setVersion: (version: number) => void; unitId: string; subUnitId: string; panelInfo: IPivotPanelDataInfo; } export type IDraggingInfo = Nullable<{ draggingId: string; destination?: Nullable; source?: Nullable; }>; export declare function PivotPanel(props: IPivotPanelProps): import("react/jsx-runtime").JSX.Element | null; export {};