import type { FieldControlProps, InspectorFromManifestProps } from "./inspector-runtime-types.js"; /** * Render one manifest-derived editor field with pluggable inspector controls. * * @param props Field-control props including the descriptor, value, and optional custom renderers. * @returns A React element for the resolved field control, or `null` when no supported control is available. * @category React */ export declare function FieldControl(props: FieldControlProps): import("react/jsx-runtime").JSX.Element | null; /** * Render a manifest-driven inspector panel for a selected set of field paths. * * @param props Inspector configuration including the current attributes, field lookup helpers, and change handler. * @returns A panel element containing generated field controls for the requested paths. * @category React */ export declare function InspectorFromManifest(props: InspectorFromManifestProps): import("react/jsx-runtime").JSX.Element;