/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { TooltipCreateOptions, TooltipDestroyable } from './types'; interface Props extends TooltipCreateOptions { cssPrefix: string; } export declare class Tooltip implements TooltipDestroyable { private props; private element; private child; private finalizeHandler; constructor(props: Props); destroy(): void; } export declare function cleanDataItem(item: object): object; export {};