import type { TableColumnSortDirection, TableOrderByState, PageQuery } from './types'; export declare const pickDirectionFromOrderByState: (orderBy: TOrder, orderByState: TableOrderByState) => TableColumnSortDirection; export declare const generatePagination: (data: { pageSize: number; pageNumber: number; orderByState: TableOrderByState; }) => PageQuery;