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