UNPKG

@sanity/desk-tool

Version:

Tool for managing all sorts of content in a structured manner

18 lines 653 B
import { CardProps } from '@sanity/ui'; import React from 'react'; interface PaneProps { children?: React.ReactNode; currentMinWidth?: number; currentMaxWidth?: number; flex?: number; id: string; minWidth?: number; maxWidth?: number; selected?: boolean; } /** * @beta This API will change. DO NOT USE IN PRODUCTION. */ export declare const Pane: React.ForwardRefExoticComponent<Omit<PaneProps & Omit<CardProps, "as" | "height" | "overflow"> & Omit<React.HTMLProps<HTMLDivElement>, "as" | "style" | "id" | "height" | "hidden">, "ref"> & React.RefAttributes<HTMLDivElement>>; export {}; //# sourceMappingURL=Pane.d.ts.map