import type { RequestData, UseFetchProps, UseFetchDataAction } from './typing'; declare const useFetchData: >(getData: ((params?: { pageSize: number; current: number; } | undefined) => Promise) | undefined, defaultData: any[] | undefined, options: UseFetchProps) => UseFetchDataAction; export default useFetchData;