import React from 'react'; type TourStepProps = { /** The id of the corresponding tour step data */ id: string; children?: React.ReactNode; }; /** * 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, }: TourStepProps) => import('react/jsx-runtime').JSX.Element; export {}; //# sourceMappingURL=TourStep.d.ts.map