import type { ITooltipSpec, ITooltipTextTheme, ITooltipTheme } from '../../../../component/tooltip'; export declare const getPixelPropertyStr: (num?: number | number[], defaultStr?: string) => string; export declare const getTextStyle: (style?: ITooltipTextTheme, textStyle?: Partial) => Partial; export declare const getLineHeight: (style?: ITooltipTextTheme) => number; export declare const getDomStyle: (spec?: ITooltipSpec) => { panelPadding: number[]; row: Partial; panel: Partial; title: Partial; shape: Partial; key: Partial; value: Partial; }; export declare const getPanelStyle: (style: ITooltipTheme['panel']) => { panelStyle: Partial; panelPadding?: number[]; }; export declare function setStyleToDom(dom: HTMLElement, style: Partial): void;