import { PanelSize } from './types'; export interface PanelContextType { resizePanel: (size: Partial) => void; initialResizePanel: (size: Partial) => void; resizeable: boolean; } /** * Provides access to closing/popping panels */ export declare const PanelContext: import("react").Context;