import * as React from 'react'; import { TextVariantType, TextWeightType } from '..'; export interface TrunctacularProps extends React.HTMLAttributes { value: string; maxStringLength?: number; variant?: TextVariantType; weight?: TextWeightType; disableTooltip?: boolean; } declare const Trunctacular: ({ value, maxStringLength, variant, weight, disableTooltip, ...props }: TrunctacularProps) => import("react/jsx-runtime").JSX.Element; export { Trunctacular };