import { MessageGateway } from "../../common/messaging";
import { Action } from "../actions/action";
import { PropertyInspector } from "./property-inspector";
/**
 * Gets the current property inspector.
 * @returns The property inspector; otherwise `undefined`.
 */
export declare function getCurrentUI(): PropertyInspector | undefined;
/**
 * Router responsible for communicating with the property inspector.
 */
declare const router: MessageGateway<Action<import("..").JsonObject>>;
export { router };
