import React from 'react'; import { type ThemeMode, type ResolvedTheme } from '../hooks/useTheme'; export type ThemeVariant = 'switch' | 'dropdown' | 'circle' | 'buttons'; export type ThemeSize = 'sm' | 'md' | 'lg'; export interface ThemeSwitchProps { size?: ThemeSize; showLabel?: boolean; variant?: ThemeVariant; enableSystem?: boolean; onThemeChange?: (theme: ThemeMode, resolvedTheme: ResolvedTheme) => void; 'aria-label'?: string; className?: string; } export declare const ThemeSwitch: React.FC; //# sourceMappingURL=ThemeSwitch.d.ts.map