import 'react'; import { ReactNode } from 'react'; import { Animated } from 'react-native'; import { MockDeviceConfig } from './types'; interface Props { children: ReactNode; config: MockDeviceConfig; pan: Animated.ValueXY; scale: number; } declare function MockDeviceScreen(props: Props): JSX.Element; export default MockDeviceScreen;