/** * Find all tables inside a structured content block by ID * @category Helper * @param {string} id Structured content block ID * @param {import('prosemirror-state').EditorState} state Editor state * @returns {Array<{ node: import('prosemirror-model').Node, pos: number }>} Tables with absolute positions * @example * const tables = editor.helpers.getStructuredContentTablesById('block-123', editor.state) * console.log(`Block contains ${tables.length} table(s)`) */ export function getStructuredContentTablesById(id: string, state: import('prosemirror-state').EditorState): Array<{ node: import('prosemirror-model').Node; pos: number; }>; //# sourceMappingURL=getStructuredContentTablesById.d.ts.map