import { type FC, type ReactNode } from 'react'; import { Tour as ArkUiTour } from '@ark-ui/react'; import type { TestableProps } from '../../utils/testId'; export interface TourProps extends Omit, TestableProps { /** * Optional override slot for the close control. Pass a `` child * (typically with `data-analytics-id`) to suppress the auto-rendered * default close button and use the consumer-supplied one in its place. */ children?: ReactNode; } export declare const Tour: FC;