import { RequestTypeById } from './types.js'; import { Ref } from 'vue-demi'; import { NullableId } from '@feathersjs/feathers'; export declare function useServicePending(): { isPending: Ref<{ find: number; count: number; get: number; create: number; update: number; patch: number; remove: number; }>; createPendingById: Ref>; updatePendingById: Ref>; patchPendingById: Ref>; removePendingById: Ref>; isFindPending: import('vue-demi').ComputedRef; isCountPending: import('vue-demi').ComputedRef; isGetPending: import('vue-demi').ComputedRef; isCreatePending: import('vue-demi').ComputedRef; isUpdatePending: import('vue-demi').ComputedRef; isPatchPending: import('vue-demi').ComputedRef; isRemovePending: import('vue-demi').ComputedRef; setPending: (method: 'find' | 'count' | 'get' | 'create' | 'update' | 'patch' | 'remove', value: boolean) => void; setPendingById: (id: NullableId, method: RequestTypeById, val: boolean) => void; unsetPendingById: (...ids: NullableId[]) => void; clearAllPending: () => void; };