import React from 'react'; import type { SceneHandle } from '../../editor/scene'; interface LabelPanelProps { selection: { kind: 'label'; id: number; areaId: number; }; sceneRef: { current: SceneHandle | null; }; } export declare function LabelPanel({ selection, sceneRef }: LabelPanelProps): React.JSX.Element; export {};