import { Credential as OpenYoloCredential, CredentialHintOptions, CredentialRequestOptions as OpenYoloCredentialRequestOptions, ProxyLoginResponse } from '../protocol/data'; import { OpenYoloApi } from './api'; export declare class NavigatorCredentials implements OpenYoloApi { private credentialsMap; disableAutoSignIn(): Promise; retrieve(options?: OpenYoloCredentialRequestOptions): Promise; save(credential: OpenYoloCredential): Promise; hint(options?: CredentialHintOptions): Promise; hintsAvailable(): Promise; proxyLogin(credential: OpenYoloCredential): Promise; }