declare module "@capacitor/core" { interface PluginRegistry { Realm: RealmPlugin; } } export interface RealmPlugin { getConstants(): Promise; initialize(options: { appId: string; }): Promise; signInAnonymously(): Promise; logout(): 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; 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; }