import { FC, ReactNode } from 'react';
export interface PropertyPanelProps {
    children: ReactNode;
    width?: string;
    position?: 'left' | 'right';
    className?: string;
}
/**
 * PropertyPanel component for consistent panel layout
 * Provides the basic structure for property editing panels
 */
export declare const PropertyPanel: FC<PropertyPanelProps>;
//# sourceMappingURL=PropertyPanel.d.ts.map