/** * Entity List Wrapper * * High-level wrapper that converts entityType string to entityConfig * and handles data loading logic. * * Uses EntityTable for rendering with advanced features: * - Row click navigation * - Quick actions on hover * - Dropdown menu with configurable actions * - Pagination with page size selector * - Bulk actions with floating bar * - URL-synchronized filters (search + configurable field filters) * * Refactored to use useEntityConfig hook for better performance and consistency */ import React from 'react'; export interface EntityListWrapperProps { entityType: string; className?: string; headerActions?: React.ReactNode; } export declare function EntityListWrapper({ entityType, className, headerActions }: EntityListWrapperProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=EntityListWrapper.d.ts.map