import React from 'react'; interface RichBlocksProps { blocks: Array<{ type: string; text?: string; [key: string]: unknown; }>; } /** Render a RichBlock[] array into Ink elements */ export declare function RichBlocks({ blocks }: RichBlocksProps): React.JSX.Element; export {};