UNPKG

@sanity/desk-tool

Version:

Tool for managing all sorts of content in a structured manner

23 lines 623 B
import React from 'react'; import { PaneNode } from '../types'; interface DeskToolPaneProps { active: boolean; childItemId: string | null; groupIndex: number; index: number; itemId: string; pane: PaneNode; paneKey: string; params: Record<string, string | undefined>; payload: unknown; selected: boolean; siblingIndex: number; } /** * @note The same pane might appear multiple times (split pane), so use index as tiebreaker * * @internal */ export declare const DeskToolPane: React.NamedExoticComponent<DeskToolPaneProps>; export {}; //# sourceMappingURL=DeskToolPane.d.ts.map