import { default as React, FC } from 'react';
export interface PropertyPanelFooterProps {
    onDelete?: () => void;
    onDuplicate?: () => void;
    deleteLabel?: string;
    duplicateLabel?: string;
    customActions?: React.ReactNode;
    deleteDisabled?: boolean;
    duplicateDisabled?: boolean;
}
/**
 * PropertyPanelFooter component for consistent panel footers
 * Provides delete, duplicate, and custom action buttons
 */
export declare const PropertyPanelFooter: FC<PropertyPanelFooterProps>;
//# sourceMappingURL=PropertyPanelFooter.d.ts.map