import React from 'react'; interface LandingPageProps { onContinue?: () => void; onGoToSignup?: () => void; onGoToMap?: () => void; onLoginSuccess?: (user: any) => void; isInitialSetup?: boolean; } export declare const LandingPage: React.FC; export {};