/** * Find all field annotations between two document positions. * * @param {number} from - Start position (inclusive). * @param {number} to - End position (exclusive). * @param {import('./types.js').PmNode} doc - Document node to scan. * @returns {import('./types.js').FieldAnnotationEntry[]} `{ node, pos }` * per annotation in range. */ export function findFieldAnnotationsBetween(from: number, to: number, doc: import('./types.js').PmNode): import('./types.js').FieldAnnotationEntry[]; //# sourceMappingURL=findFieldAnnotationsBetween.d.ts.map