/** * Find field annotations matching a predicate. * * @param {(node: import('./types.js').PmNode) => boolean} predicate - * Called with each `fieldAnnotation` node; return `true` to keep the entry. * @param {import('./types.js').EditorState} state - The editor state to search. * @returns {import('./types.js').FieldAnnotationEntry[]} Matching * `{ node, pos }` entries. */ export function findFieldAnnotations(predicate: (node: import('./types.js').PmNode) => boolean, state: import('./types.js').EditorState): import('./types.js').FieldAnnotationEntry[]; //# sourceMappingURL=findFieldAnnotations.d.ts.map