import { FC } from 'react'; import { TooltipProps } from '../Tooltip'; export interface MoreDetailsPropsStrict { /** Adds one or more classnames for an element */ className?: string; /** Direction of Tooltip */ direction?: TooltipProps['direction']; /** Full value. If different from `short`, this is shown in a Tooltip */ full: string; /** Adds one or more classnames to Icon wrapper */ iconClassName?: string; /** Adds one or more classnames to always visible text */ labelClassName?: string; /** Abbreviated value. This is always shown */ short: string; /** Font size of abbreviated `short` value. Uses BodyText sizing. */ size?: 'large' | 'medium' | 'small' | 'xsmall'; /** Give Tooltip additional props for customization */ tooltipProps?: TooltipProps; } export interface MoreDetailsProps extends MoreDetailsPropsStrict { [propName: string]: any; } export declare const MoreDetails: FC;