@nghinv/react-native-app-tour
Version:
React Native app tour Library
17 lines (16 loc) • 482 B
TypeScript
/**
* 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;