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