import * as SwitchPrimitives from '@radix-ui/react-switch'; import type { ComponentProps, FC } from 'react'; export type SwitchProps = ComponentProps & { thumbProps?: ComponentProps; dataTestId?: string; }; export declare const Switch: FC;