import type { Note, NoteAttachment } from './types.js'; export declare function collectReferencedAttachmentIds(note: Pick): Set; export declare function partitionAttachmentsByReference(note: Pick): { kept: NoteAttachment[]; removed: NoteAttachment[]; };