import { Ref } from 'vue'; import { TableItem } from './../types'; export declare function useTablePagination(): { getPagedTableItems: (tableItems: TableItem[], pagination: Ref, page: Ref, itemsPerPage: Ref, totalLength: Ref) => TableItem[]; };