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?: boolean; backdropColor?: string; verticalOffset?: number; wrapperStyle?: StyleProp; maskOffset?: number; borderRadius?: number; animationDuration?: number; gradient?: string[]; opacity?: number; disableMaskInput?: boolean; children: React.ReactNode; } export declare const TourGuideProvider: ({ children, wrapperStyle, labels, tooltipComponent, tooltipStyle, androidStatusBarVisible, backdropColor, animationDuration, maskOffset, borderRadius, verticalOffset, gradient, opacity, disableMaskInput, startAtMount, }: TourGuideProviderProps) => JSX.Element;