interface propType { onFinish?: Function; isOpen?: boolean; onClose?: Function; color?: string; backgroundColor?: string; btnColor?: string; btnBackGroundColor?: string; actions?: Record; autoScroll?: boolean; image?: boolean; disableScrollSelector?: string; animation?: boolean; tooltip?: boolean; iconColor?: string; token: string; userId: string; questId: string; enableVariation?: boolean; } declare const WalkThrough: ({ onFinish, isOpen, questId, token, userId, onClose, backgroundColor, btnBackGroundColor, btnColor, color, actions, autoScroll, image, disableScrollSelector, animation, tooltip, iconColor, enableVariation }: propType) => import("react/jsx-runtime").JSX.Element; export default WalkThrough;