/** * * * Floating theme/mode selector panel. * Theme and mode are orthogonal — every theme supports light and dark. * * Usage: * * * Themes: "none" (bare structure), "default", "ocean", "antigravity" * Modes: "auto" (OS preference), "light", "dark" * * Sets data-ry-theme and data-ry-mode on . * Persists selection in localStorage. */ import { RyElement } from '../core/ry-element.js'; export declare class RyThemePanel extends RyElement { #private; setup(): void; get theme(): string; set theme(v: string); get mode(): string; set mode(v: string); } //# sourceMappingURL=ry-theme-panel.d.ts.map