import { WebPlugin } from "@capacitor/core"; import * as RW from "realm-web"; import { RealmPlugin } from "./definitions"; export declare class RealmWeb extends WebPlugin implements RealmPlugin { private app; private user; constructor(); initialize(options: { appId: string; }): Promise; signInWithEmailPassword(options: { email: string; password: string; }): Promise; signInWithApiKey(options: { apiKey: string; }): Promise; signInWithJWT(options: { jwtToken: string; }): Promise; signInWithGoogle(options: { googleToken: string; }): Promise; signInWithFacebook(options: { accessToken: string; }): Promise; signInWithApple(options: { tokenId: string; }): Promise; getConstants(): Promise; signInAnonymously(): Promise; logout(): Promise; registerWithEmailPassword(options: { email: string; password: string; }): Promise; confirmEmail(options: { tokenId: string; token: string; }): Promise; resetPassword(options: { tokenId: string; token: string; newPassword: string; }): Promise; sendPasswordResetEmail(options: { email: string; }): Promise; get userObj(): RW.User; } declare const Realm: RealmWeb; export { Realm };