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