import { ComponentPropsWithoutRef } from 'react'; import * as RadixSwitch from '@radix-ui/react-switch'; export interface SwitchProps extends ComponentPropsWithoutRef { error?: string; containerClassName?: string; labelClassName?: string; label?: string; description?: string; } export declare const Switch: import('react').ForwardRefExoticComponent>;