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