/** @category Auth Providers */ export declare function usePassphraseAuth({ wordlist, }: { wordlist: string[]; }): { logIn: (passphrase: string) => Promise; signUp: (name?: string) => Promise; registerNewAccount: (passphrase: string, name: string) => Promise; generateRandomPassphrase: () => string; readonly passphrase: string; readonly state: "anonymous" | "signedIn"; }; //# sourceMappingURL=PassphraseAuth.svelte.d.ts.map