import * as v from "valibot"; /** * Message sent by the host every time the theme changes after the initial * `init` handshake. */ export declare const themeChangedMessageSchema: v.ObjectSchema<{ readonly type: v.LiteralSchema<"themeChanged", undefined>; readonly theme: v.PicklistSchema<["light", "dark"], undefined>; }, undefined>; export type ThemeChangedMessage = v.InferOutput; //# sourceMappingURL=themeChanged.d.ts.map