/** @jsx jsx */ import { FC } from 'react'; import { BoxProps } from 'theme-ui'; export declare type HoverBoxProps = { /** * laabel to be displayed when the box is hovered */ label: string; } & BoxProps; /** * Container component that will fade/outline a label at the bottom * */ export declare const HoverBox: FC;