import { UseFindParams } from './types.js'; import { Params, Query } from '../types.js'; import { Ref } from 'vue-demi'; import { MaybeRef } from '@vueuse/core'; export declare function makeParamsWithoutPage(params: MaybeRef): any; export declare function updateParamsExcludePage(_params: Ref, _newParams: MaybeRef): void; export declare function getIdsFromQueryInfo(pagination: any, queryInfo: any): any[]; /** * A wrapper for findInStore that can return server-paginated data */ export declare function itemsFromPagination(store: any, service: any, params: Params): any[]; export declare function getAllIdsFromQueryInfo(pagination: any, queryInfo: any): any[]; /** * A wrapper for findInStore that can return all server-paginated data */ export declare function allItemsFromPagination(store: any, service: any, params: Params): any[];