/// import { TooltipProps } from 'antd/lib/tooltip'; export declare function RenderToolTip(text: string, limit?: number, tipProps?: { placement?: any; [propName: string]: any; } | TooltipProps): string | JSX.Element; export declare function overstepToTooltip(text: string, limit?: number, tipProps?: { placement?: any; [propName: string]: any; } | TooltipProps): string | JSX.Element; export declare function arrayOverstepToTooltip(arr: string[], limit?: number, tipProps?: { placement?: any; [propName: string]: any; } | TooltipProps): string | JSX.Element; declare type TipsType = { context?: string | number; style?: Object; className?: string; iconColor?: '' | 'info' | 'success' | 'warn' | 'error'; [propName: string]: any; }; export declare function Tips({ context, style, className, iconColor, children }: TipsType): JSX.Element; export declare function WrarnTips({ context, style, className, iconColor, children }: TipsType): JSX.Element; export {};