import type { FC } from 'react'; import { Switch as ArkUiSwitch } from '@ark-ui/react/switch'; import { type TestableProps } from '../../utils/testId'; export interface SwitchProps extends ArkUiSwitch.RootProps, TestableProps { a11yMode?: boolean; } export declare const Switch: FC;