UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

13 lines 666 B
import React from 'react'; import { Typography, TooltipProps, TypographyTextProps } from '@open-condo/ui/src'; type EllipsisProp = boolean | NonNullable<React.ComponentProps<typeof Typography.Paragraph>['ellipsis']>; type RenderTextWithTooltipProps = { ellipsis?: EllipsisProp; postfix?: string; type?: TypographyTextProps['type']; extraTitle?: string | null; extraTooltipProps?: TooltipProps; }; export declare const renderTextWithTooltip: <TValue = unknown>({ ellipsis, postfix, type, extraTitle, extraTooltipProps, }?: RenderTextWithTooltipProps) => (text: TValue) => React.JSX.Element; export {}; //# sourceMappingURL=renderCellUtils.d.ts.map