import { FC, InputHTMLAttributes } from "react";
import { AppearanceProps, BaseComponentProps } from "../../types";
export interface SwitchProps extends BaseComponentProps, InputHTMLAttributes<HTMLInputElement>, AppearanceProps {
}
export declare const Switch: FC<SwitchProps>;
