import log from "../../log.js"; import { BetJackpot } from "../../types.js"; import { displayMainWinner } from "../winAnimations/index.js"; declare function updateAmount(currentAmount: number, amount: number): null | undefined; declare function betJackpot(props: BetJackpot): any; declare function optin(): Promise; declare function optOut(): Promise; declare function setStyleFile(src: string): Promise; declare function drag(element: any): void; declare function destroy(): void; declare function updateWidgetInfoLabel(content: any): void; declare const actions: { updateAmount: typeof updateAmount; updateText: typeof import("../widget/texts.js").set; optin: typeof optin; log: typeof log; optOut: typeof optOut; setStyleFile: typeof setStyleFile; updateWidgetMedia: (props: import("../../types.js").SetMediaProps) => any; drag: typeof drag; displayMainWinner: typeof displayMainWinner; betJackpot: typeof betJackpot; destroy: typeof destroy; updateAllTexts: typeof import("../widget/texts.js").updateTexts; updateWidgetInfoLabel: typeof updateWidgetInfoLabel; }; export default actions;