import { DataGridProps, ToolbarProps } from '../types'; // Support for props for the deprecated Table component export type DataGridMockProps = Omit< DataGridProps, 'title1' | 'title2' | 'handleSearchChangeCallback' > & { title1?: ToolbarProps['title1']; title2?: ToolbarProps['title2']; handleSearchChangeCallback?: ToolbarProps['handleSearchChangeCallback']; }; export * from './allTenants'; export * from './members'; export * from './primary'; export * from './webActivity';