import { ReactElement, ReactPortal } from 'react'; import { MdxComponent, NonScalarNode } from '../interfaces'; interface CodeProps { children: Exclude>; } /** * * For MDX files, steer away from using JSX components * for code in favor of standard markdown syntax. * *```` * ``` * const a = 16; * ``` *```` */ export declare const InlineCode: MdxComponent; export {};