///
import { StyleProp, ViewStyle } from 'react-native';
import { BorderRadiusObject, Shape } from '../types';
interface TourGuideZoneByPositionProps {
zone: number;
isTourGuide?: boolean;
top?: number | string;
left?: number | string;
right?: number | string;
bottom?: number | string;
width?: number | string;
height?: number | string;
shape?: Shape;
borderRadiusObject?: BorderRadiusObject;
containerStyle?: StyleProp;
keepTooltipPosition?: boolean;
tooltipBottomOffset?: number;
text?: string;
}
export declare const TourGuideZoneByPosition: ({ isTourGuide, zone, width, height, top, left, right, bottom, shape, containerStyle, keepTooltipPosition, tooltipBottomOffset, borderRadiusObject, text, }: TourGuideZoneByPositionProps) => JSX.Element | null;
export {};