import React from 'react';
import { TdPrimaryTableProps } from '../type';
export default function useAsyncLoading(props: TdPrimaryTableProps): {
    renderAsyncLoading: () => React.JSX.Element;
};
