import { default as React, FC } from 'react';
export interface PropertyPanelHeaderProps {
    title: string;
    onClose: () => void;
    subtitle?: string;
    actions?: React.ReactNode;
}
/**
 * PropertyPanelHeader component for consistent panel headers
 * Provides title, close button, and optional actions
 */
export declare const PropertyPanelHeader: FC<PropertyPanelHeaderProps>;
//# sourceMappingURL=PropertyPanelHeader.d.ts.map