import React from "react"; import type InlineBlockRenderer from "../../../types/InlineBlockRenderer"; import { InBlockMutations } from "../../../types/BlockRenderer"; export type InlineBlock = { type: string[]; start: number; end: number; properties?: Record[]; }; declare const renderInlineBlocks: (text: string, mutations: InBlockMutations, blockID: string, inlineBlocks?: InlineBlock[], rendererers?: { [type: string]: InlineBlockRenderer>; } | undefined) => React.ReactNode[]; export default renderInlineBlocks; //# sourceMappingURL=renderInlineBlocks.d.ts.map