import { IDataTableType, RowActionWithData } from './Table.types'; export interface TableProps { tableConfig?: IDataTableType; tableContent?: T[]; action?: (userAction: RowActionWithData) => void; } export declare const Table: ({ tableConfig, tableContent, action }: TableProps) => JSX.Element;