import * as React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { BorderRadiusObject, Shape } from '../types'; export interface TourGuideZoneProps { zone: number; isTourGuide?: boolean; title?: string; text?: string; content?: any; shape?: Shape; maskOffset?: number; borderRadius?: number; children?: React.ReactNode; style?: StyleProp; keepTooltipPosition?: boolean; tooltipBottomOffset?: number; borderRadiusObject?: BorderRadiusObject; } export declare const TourGuideZone: ({ isTourGuide, zone, children, shape, title, text, maskOffset, borderRadius, style, keepTooltipPosition, tooltipBottomOffset, borderRadiusObject, content }: TourGuideZoneProps) => JSX.Element;