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