import type { WithIndexedContext } from "./search.js"; export interface DocumentsChange { added: WithIndexedContext[]; removed: WithIndexedContext[]; } export interface DocumentEvents { change: CustomEvent>; }