export declare function tipsDom(style?: Partial<CSSStyleDeclaration>): {
    element: HTMLElement;
    show: () => void;
    hide: () => void;
    setLeftTop: (left: string, top: string) => void;
};
