UNPKG

@nghinv/react-native-app-tour

Version:
18 lines (17 loc) 558 B
/** * Created by nghinv on Wed Jun 23 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; import Animated from 'react-native-reanimated'; import type { SceneType } from './types'; interface MashViewProps { currentStep: Animated.SharedValue<number>; progress: Animated.SharedValue<number>; onStop: () => void; open: (step?: number) => void; scene: SceneType; } declare function MashView(props: MashViewProps): JSX.Element; declare const _default: React.MemoExoticComponent<typeof MashView>; export default _default;