export interface WaypointMessageData { method: string; type: 'success' | 'fail'; data?: { address: string; id_token: string; }; error?: Error; } export declare function useWaypointMessageHandler(enableAuth: boolean): void;