import { DivProps } from "../types/index.mjs";
import { ActionIconProps } from "../ActionIcon/type.mjs";
import { ThemeMode } from "antd-style";

//#region src/ThemeSwitch/type.d.ts
interface ThemeSwitchProps extends DivProps {
  labels?: {
    auto: string;
    dark: string;
    light: string;
  };
  onThemeSwitch: (themeMode: ThemeMode) => void;
  size?: ActionIconProps['size'];
  themeMode: ThemeMode;
  type?: 'icon' | 'select';
  variant?: ActionIconProps['variant'];
}
//#endregion
export { ThemeSwitchProps };
//# sourceMappingURL=type.d.mts.map