import type { AbstractCRUDApi } from "../../operations/index.js"; import { HasDBId } from "../../../../types.js"; import { CrudSyncAction } from "../constants/index.js"; export declare function useSyncCrud(api: AbstractCRUDApi, actions?: Array): { subscribeSyncCrud: (target: HasDBId | Array) => void; unsubscribeSyncCrud: () => void; } | undefined;