import type { NoteDocument, NoteSummary } from "../../shared/note-types.js"; export interface PluginNoteDraft { title: string; body: string; /** A folder under the notes root. Omitted, the note lands at the top level. */ folder?: string; } export interface PluginHostNotes { list(query?: string): NoteSummary[]; read(notePath: string): NoteDocument; create(draft: PluginNoteDraft): NoteDocument; } export declare function noteVerbs(pluginId: string): PluginHostNotes; //# sourceMappingURL=notes.d.ts.map