/**
 * Props for the ThemeToggle component.
 */
export interface ThemeToggleProps {
    /** Optional className passed to the trigger button. */
    className?: string;
}
/**
 * ThemeToggle provides a dropdown to switch between Light, Dark, and System themes.
 *
 * @param className - Optional className passed to the trigger button.
 * @returns {JSX.Element} A dropdown menu to switch themes.
 */
export declare function ThemeToggle({ className }: ThemeToggleProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=theme-toggle.d.ts.map