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