import React from 'react'; import type { MyColumns, MobileAction, CRUDProps } from '../typing'; interface ProTableMobileProps { columns?: MyColumns[]; crud?: CRUDProps; crudKey?: string; apiPrefix?: string; globalQuery?: Record; umiRequest?: (url: string, options?: any) => Promise; mobileActions?: MobileAction[]; onMobileItemClick?: (row: T) => void; mobileInfiniteScroll?: boolean; toolBarRender?: (action: any, rows: any) => React.ReactNode[]; } declare function ProTableMobile = Record>({ columns, crud, crudKey, apiPrefix, globalQuery, umiRequest, mobileActions, onMobileItemClick, mobileInfiniteScroll, toolBarRender, }: ProTableMobileProps): React.JSX.Element; export default ProTableMobile;