/**
 * PropertyPanel Component
 *
 * A component for editing the properties of a circuit component.
 * This is a styled wrapper around the HeadlessPropertyPanel component.
 */
import React from 'react';
import { ComponentInstance } from '../schemas/componentSchema';
export interface PropertyPanelProps {
    component: ComponentInstance | null;
    onPropertyChange?: (id: string, key: string, value: any) => void;
    className?: string;
    style?: React.CSSProperties;
}
declare const PropertyPanel: React.FC<PropertyPanelProps>;
export default PropertyPanel;
//# sourceMappingURL=PropertyPanel.d.ts.map