import { PendingCustomLine } from '../../editor/types'; import type { SceneHandle } from '../../editor/scene'; import type { MudletMap } from '../../mapIO'; export declare function CustomLineDrawPanel({ pending, sceneRef }: { pending: PendingCustomLine; sceneRef: { current: SceneHandle | null; }; }): import("react").JSX.Element; export declare function CustomLineSelectPanel({ selection, map, sceneRef }: { selection: { kind: 'customLine'; roomId: number; exitName: string; pointIndex?: number; }; map: MudletMap; sceneRef: { current: SceneHandle | null; }; }): import("react").JSX.Element;