import { walkResponeType } from './response'; interface BrandTheme { accentColor?: string; background?: string; borderRadius?: string; primaryButton?: string; secondaryButton?: string; contentColor?: string; fontFamily?: string; logo?: string; primaryColor?: string; secondaryColor?: string; tertiaryColor?: string; titleColor?: string; } interface QuestThemeData { accentColor: string; theme: string; borderRadius: string; buttonColor: string; images: string[]; } 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; offlineFormData: walkResponeType; brandTheme?: BrandTheme; questThemeData?: QuestThemeData; } declare const TourOfflineComponent: ({ onFinish, isOpen, onClose, backgroundColor, btnBackGroundColor, btnColor, color, actions, offlineFormData, autoScroll, image, disableScrollSelector, animation, tooltip, iconColor, brandTheme, questThemeData, }: propType) => import("react/jsx-runtime").JSX.Element; export default TourOfflineComponent;