import { CSSProperties, ReactElement } from 'react';

export type TableTitleTooltipProps = {
	title: string | ReactElement;
	tooltip: string | {
		icon?: ReactElement;
		content: string;
		hoverArea?: "icon" | "all";
	};
	gap?: number;
	className?: string;
	style?: CSSProperties;
};
/**
 * title + tooltip
 * @deprecated 已过期，请使用 TipsWrapper 组件
 */
export declare const TableTitleTooltip: (props: TableTitleTooltipProps) => import("react").JSX.Element;

export {};
