import { PropsTypes } from '@orca-fe/deye-typings'; import { AxisPointerType, LabelType, TextStyleType } from '../defs'; export declare type EChartsTooltipProps = Pick & { show?: boolean; trigger?: 'item' | 'axis' | 'none'; axisPointer?: AxisPointerType; showContent?: boolean; alwaysShowContent?: boolean; triggerOn?: string; showDelay?: number; hideDelay?: number; enterable?: boolean; renderMode?: string; confine?: boolean; appendToBody?: boolean; className?: string; transitionDuration?: number; position?: string | [number | string, number | string] | ((...args: any[]) => any); formatter?: string | ((...args: any[]) => string | HTMLElement | HTMLElement[]); valueFormatter?: string | ((value: string | number) => string); textStyle?: TextStyleType; extraCssText?: string; order?: 'seriesAsc' | 'seriesDesc' | 'valueAsc' | 'valueDesc' | string; }; declare const EChartsTooltip: (props: EChartsTooltipProps) => null; export default EChartsTooltip; export declare const echartsTooltipPropsDef: PropsTypes[];