import { FC, ReactNode } from 'react'; import { BoxProps } from 'theme-ui'; export interface ValueProps { /** * label - usually smaller and muted */ label: ReactNode; /** * highlighted value */ value: ReactNode; } /** * * Displays a value with a small label */ export declare const Value: FC;