import { InputHTMLAttributes, ReactNode } from "react";
interface Props {
/**
* Color of the checkbox
* @default "primary"
*/
color: "primary" | "neutral" | "error" | "warning" | "success";
/**
* Variant of the checkbox
* @default "default"
*/
variant: "default" | "legacy";
/**
* Icon to display on the thumb
* @see https://react-icons.github.io/react-icons/
*/
icon?: ReactNode;
}
export declare function Switch({ color, className, variant, children, icon, ...props }: InputHTMLAttributes & Partial): import("react/jsx-runtime").JSX.Element;
export {};