import type { Theme } from "./types"; /** * Toggle the theme of the application. If subscribed, the tokens will be updated accordingly. * Will add data-theme="" to the element. * Will dispatch a custom event "atlantis.toggle-theme" with the new theme for other providers to subscribe to. */ export declare function updateTheme(theme: Theme): void;