@hadyfayed/filament-workflow-canvas
Version:
Visual workflow builder and canvas component for Filament applications
13 lines • 435 B
TypeScript
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