import { type ComponentPropsWithRef } from "react"; export interface SwitchProps { error?: string; classNamePrefix?: string; } type Props = SwitchProps & Omit, "type">; declare const Switch: { ({ error, className, classNamePrefix, ref, ...rest }: Props): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; export default Switch;