import { NodeComponentProps } from '../../types/node-component'; import { default as React } from 'react'; export declare function InlineCodeNode(props: NodeComponentProps<{ type: 'inline_code'; code: string; }>): React.JSX.Element; export default InlineCodeNode;