import { HTMLProps } from "react";
export interface ColorSwitchProps extends HTMLProps {
/** Diameter of the color switch */
size?: number;
/** Skip system colorScheme while toggling */
skipSystem?: boolean;
targetSelector?: string;
}
/**
* Color switch button to quickly set user preference
*
* @example
* ```ts
*
* ```
*
* Custom size & skipSystem
*
* ```ts
*
* ```
*/
export declare const ColorSwitch: ({ size, skipSystem, targetSelector, className, ...props }: ColorSwitchProps) => import("react/jsx-runtime").JSX.Element;