export type LoginResult = { api_key: string; handle: string; expiry_time: string; }; export declare function initiateLoginFlow(engine_domain: string): Promise; export declare function pollLoginAttempt(domain: string, token: string): Promise;