import { TableTdFunctionTypes, TableThFunctionTypes } from '../types';
declare const useTable: {
    makeTableTdData: ({ array, setter, page, perPage, thMap, }: TableTdFunctionTypes) => void;
    makeTableThData: ({ addedMap, thMap, setter }: TableThFunctionTypes) => void;
};
export default useTable;
