export interface Popover { fieldId: string; fieldTitle: string; tabs: { helptext?: string; history?: History[]; }; } export interface History { Id: string; Value: string; User: string; Date: string; } export declare class TooltipComponent { popover: Popover; id: string; color: string; type: string; disabled: boolean; icon: string; withAnimationOptionsVisible: boolean; constructor(); ToggleAnimationOptions(): void; }