import '../../styles/table.scss'; import React from "react"; export declare enum TPaginationPosition { topLeft = "topLeft", topCenter = "topCenter", topRight = "topRight", bottomLeft = "bottomLeft", bottomCenter = "bottomCenter", bottomRight = "bottomRight", tablePagination = "tablePagination", none = "none" } export interface TPagination { position?: TPaginationPosition; pageSize?: number; } export interface TData { type: string; size: "middle" | "small"; title: string; style: any; rowKey?: string; columns: Array; actions: Array; api: string | Promise; dataSource: Array | string; className: string | Array; width?: number | string; debug: boolean; pagination?: TPagination; bordered: boolean; checkbox?: boolean; actionSpaceLine?: boolean; searchParams?: any; } export interface TProps { data: TData; onSelect?: Function; } declare const _default: React.ForwardRefExoticComponent>; export default _default;