import { Column } from '../../interfaces'; export interface Props { // eslint-disable-next-line @typescript-eslint/no-explicit-any data: any[]; columns: Column[]; orderBy?: string; orderType?: string; setOrder: (columnId: string) => void; selectedCount: number; selectAllRows: () => void; isSelectable: boolean; disableFullSelection: boolean; notSelectableItemsCount: number; disableMultipleSelection: boolean; shouldDisplayActionColumn: boolean; // eslint-disable-next-line @typescript-eslint/no-explicit-any theme: any; }