import { AxiosResponse } from 'axios'; export type SortConfig = { column: string; type: string; } | null; /** * Call Tabular-api to get table content */ export declare function getData(id: string, page: number, sortConfig?: SortConfig): Promise< AxiosResponse>; /** * Call Tabular-api to get table profile */ export declare function getProfile(id: string): Promise< AxiosResponse>; //# sourceMappingURL=tabularApi.d.ts.map