import { FC } from 'react'; import { IAction } from '../../types'; export interface ITableScopeProps { key: string; value: string; } export interface ITableHeaderProps { name: string; valueSource: string; sort?: boolean; date?: boolean; action?: boolean; isCount?: boolean; scope?: ITableScopeProps[]; } export interface ITableSortProps { name: string; order: string; } interface ITableProps { theme?: any; headers: ITableHeaderProps[]; elements: any; moreActions?: IAction[]; hover?: boolean; selectable?: boolean; sortable?: boolean; filtrable?: boolean; sort?: ITableSortProps; pageSize?: number; onRowClick?: (id: string) => void; ifPagination?: boolean; } export declare const Table: FC; export {};