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