import { default as React } from 'react'; interface TutorialProps { heading: string; subheading: string; userId?: string; token?: string; questId?: string; btnColor?: string; bgColor?: string; btnTextColor?: string; textColor?: string; font?: string; isOpen?: boolean; onClose?: Function; showFooter?: boolean; variation?: string; } declare const Tutorial: React.FC; export default Tutorial;