import React from 'react'; import { Switch as ReactNativeSwitch, SwitchProps as ReactNativeSwitchProps, } from 'react-native'; export interface SwitchProps extends ReactNativeSwitchProps {} export const Switch: React.FC = ({ ...otherProps }) => { return ( ); };