declare module '@10up/component-tooltip' { export type TooltipOptions = { /** * Called after the tooltip is initialized */ onCreate?: () => void, /** * Called when the tooltip opens */ onOpen?: () => void, /** * Called when the tooltip closes */ onClose?: () => void, } export class Tooltip { constructor(element: string, options?: TooltipOptions); } }