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