import React from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; type TourStepProps = { /** The id of the corresponding tour step data */ id: string; children?: React.ReactNode; style?: StyleProp; }; /** * The TourStep component wraps the target element (children) that you want to highlight during a step * in the tour. The active tour step content will be positioned relative to the target element when it * is rendered. */ export declare const TourStep: ({ id, children, ...props }: TourStepProps) => import('react/jsx-runtime').JSX.Element; export {}; //# sourceMappingURL=TourStep.d.ts.map