import { CMCComponentProps } from './base-component'; export interface UsersTableProps extends CMCComponentProps<{ overrideColumns?: (supportedCells: Record, columns: any) => any; }> { } export interface UsersTableContextData { searchQuery: string; searching: boolean; identifierType?: string; filterType?: string; onSearch: (query: string) => void; setFilterType?: (filterType: string) => void; } export interface UseTableStoreOptions { id?: string; initialState?: UsersTableContextData; }