UNPKG

@nghinv/react-native-app-tour

Version:
17 lines (16 loc) 482 B
/** * Created by nghinv on Thu Jun 24 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; import Animated from 'react-native-reanimated'; interface MenuButtonProps { currentStep: Animated.SharedValue<number>; onStop: () => void; } declare function MenuButton(props: MenuButtonProps): JSX.Element; declare namespace MenuButton { var defaultProps: {}; } declare const _default: React.MemoExoticComponent<typeof MenuButton>; export default _default;