import * as React from 'react'; export interface LiProps extends React.HTMLAttributes { [x: string]: unknown; ref?: React.Ref; shouldRender?: boolean; } export interface LiRefCurrent { wrapper: HTMLLIElement | null; } export declare const Li: React.FC;