UNPKG

@nghinv/react-native-app-tour

Version:
21 lines (20 loc) 617 B
/** * Created by nghinv on Wed Jun 23 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; import type { AppTourType, OptionType, ScenesType } from './types'; interface AppTourProviderProps { children: React.ReactNode; options?: OptionType; scenes: ScenesType; sceneIndex?: number; } declare let AppTour: AppTourType; declare function AppTourProvider(props: AppTourProviderProps): JSX.Element; declare namespace AppTourProvider { var defaultProps: {}; } declare const _default: React.MemoExoticComponent<typeof AppTourProvider>; export default _default; export { AppTour, };