rn-sherpa
Version:
A lightweight, flexible React Native library for creating powerful, step-by-step guided product tours with smart positioning and animations
10 lines • 379 B
TypeScript
import React from 'react';
import type { TourConfig, TourContextValue } from '../types';
interface TourProviderProps {
children: React.ReactNode;
config: TourConfig;
}
export declare function TourProvider({ children, config }: TourProviderProps): React.JSX.Element;
export declare function useTour(): TourContextValue;
export {};
//# sourceMappingURL=TourContext.d.ts.map