export declare const useTableData: ({ dataSourceAPI, connectorMethod, query, events, isModel, dbName, isH5, isNoDataSourceBind, supportManyRelated, }: { dataSourceAPI: any; connectorMethod: any; query: any; events: any; isModel: any; dbName: any; isH5: any; isNoDataSourceBind: any; supportManyRelated: any; }) => { tableData: any[]; tableTotal: number; tableLoading: boolean; getNewList: (swr?: any) => Promise; isError: boolean; errorObj: { code: string; message: string; requestId: string; }; emptyTable: () => void; };