/** * For MDX files, steer away from using JSX components * for lists in favor of standard markdown syntax. * *``` * 1. First ordered list item * 1. In markdown, the actual numbers don’t matter, just that it’s a number * 2. In markdown, the actual numbers don’t matter, just that it’s a number * ``` */ export function OL({ children, className, ...rest }: { [x: string]: any; children: any; className: any; }): React.DetailedReactHTMLElement, HTMLInputElement>; export namespace OL { namespace propTypes { let children: PropTypes.Validator>>; let className: PropTypes.Requireable; } } import React from 'react'; import PropTypes from 'prop-types';