UNPKG

@spaced-out/ui-design-system

Version:
17 lines 622 B
import * as React from 'react'; import type { BaseTooltipProps } from '../../components/Tooltip'; type ClassNames = Readonly<{ wrapper?: string; }>; export interface TruncatedTextWithTooltipProps { children?: React.ReactNode; tooltip?: BaseTooltipProps; classNames?: ClassNames; line?: number; wordBreak?: string; wrapText?: boolean; testId?: string; } export declare const TruncatedTextWithTooltip: ({ classNames, children, tooltip, wrapText, line, wordBreak, testId, }: TruncatedTextWithTooltipProps) => React.JSX.Element; export {}; //# sourceMappingURL=TruncatedTextWithTooltip.d.ts.map