import * as React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { Labels } from '../types'; import { TooltipProps } from './Tooltip'; export interface TourGuideProviderProps { tooltipComponent?: React.ComponentType; tooltipStyle?: StyleProp; labels?: Labels; androidStatusBarVisible?: boolean; startAtMount?: string | boolean; backdropColor?: string; verticalOffset?: number; wrapperStyle?: StyleProp; maskOffset?: number; borderRadius?: number; animationDuration?: number; children: React.ReactNode; dismissOnPress?: boolean; preventOutsideInteraction?: boolean; closeOnOutsidePress: boolean; } export declare const TourGuideProvider: ({ children, wrapperStyle, labels, tooltipComponent, tooltipStyle, androidStatusBarVisible, backdropColor, animationDuration, maskOffset, borderRadius, verticalOffset, startAtMount, dismissOnPress, preventOutsideInteraction, closeOnOutsidePress, }: TourGuideProviderProps) => JSX.Element;