/** * 获取表格数据,内置后端分页、筛选和排序的请求逻辑,同时支持条件请求 * TODO: 后续需要补全 TS 类型定义 */ export declare function useTableData({ fn, params, condition, refreshDeps, options, }: { fn?: (...args: any[]) => void; params?: {}; condition?: any[]; refreshDeps?: any[]; options?: {}; }): import("ahooks-v2/lib/useAntdTable").Result;