import type { DocHandle } from '@automerge/automerge-repo'; import type { DocumentContent } from './types.js'; /** * Deletes the exiting entity from the repo. */ declare const delete$: (handle: DocHandle) => (id: string) => boolean; export { delete$ as delete }; /** * Deletes the exiting entity from the repo. */ export declare const markAsDeleted: (handle: DocHandle) => (id: string) => boolean; //# sourceMappingURL=delete.d.ts.map