@sanity/desk-tool
Version:
Tool for managing all sorts of content in a structured manner
12 lines • 393 B
TypeScript
import React from 'react';
import { PaneNode } from './types';
import { LOADING_PANE } from './constants';
interface DeskToolProps {
onPaneChange: (panes: Array<PaneNode | typeof LOADING_PANE>) => void;
}
/**
* @internal
*/
export declare const DeskTool: React.MemoExoticComponent<({ onPaneChange }: DeskToolProps) => React.JSX.Element>;
export {};
//# sourceMappingURL=DeskTool.d.ts.map