import { default as React } from 'react'; interface PairComponentPanelProps { className?: string; } /** * Embeddable PairComponent content - renders the component's header, form, * field indicator, and close confirmation dialog. Used inside ArtifactPanel tabs. */ export declare const PairComponentContent: React.FC<{ className?: string; }>; /** * Standalone PairComponent Panel (legacy - kept for backward compatibility). * The preferred approach is to use PairComponentContent inside ArtifactPanel tabs. */ declare const PairComponentPanel: React.FC; export default PairComponentPanel;