import { PopupModal } from '../../schema/index.ts'; /** * "View JSON" button + modal. Pass `popup` to emit a single object, or `popups` * to emit an array (the multi-template handoff). Validation errors are counted * across whatever is passed. */ export declare function JsonPane({ popup, popups, label, }: { popup?: PopupModal; popups?: PopupModal[]; label?: string; }): import("react").JSX.Element;