import React, { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; declare const LiConsumer: React.Consumer; interface LiProps { children: ReactNode; className?: string | null; [otherProp: string]: unknown; } interface LiContext { hasListItemParent: boolean; } export declare const LI: MdxComponent; export type { LiProps }; export { LiConsumer };