export declare class ApiTable { private baseURL?; private PRIFIX; constructor(baseURL?: string | undefined); getTableFormat(moduleName: string, tabName: string, reqBody: any): Promise>; getTableRows(moduleName: string, tabName: string, reqBody: any): Promise>; getTableSubRows(moduleName: string, tabName: string, parendId: string, reqBody: any): Promise>; getCellSelectList(moduleName: string, tabName: string, reqBody: any): Promise>; updateCellSelect(moduleName: string, tabName: string, reqBody: any): Promise>; updateColumnOrder(moduleName: string, tabName: string, reqBody: any): Promise>; updateOperationBtnsPosition(moduleName: string, tabName: string, reqBody: any): Promise>; updateColumnActive(moduleName: string, tabName: string, reqBody: any): Promise>; getDataStatistics(moduleName: string, tabName: string, reqBody: any): Promise>; updateDataStatisticsActive(moduleName: string, tabName: string, reqBody: any): Promise>; getDownloadDataUrl(moduleName: string, tabName: string, reqBody: any): Promise>; getColumnFilterByColumn(moduleName: string, tabName: string, reqBody: any): Promise>; createOrUpdateRowCells(moduleName: string, tabName: string, rowId: string | null | undefined, reqBody: any[]): Promise>; }