/** * `usePassphraseAuth` hook provides a `JazzAuth` object for passphrase authentication. * * @example * ```ts * const auth = usePassphraseAuth({ appName, appHostname, wordlist }); * ``` * * @category Auth Providers */ export declare function usePassphraseAuth({ wordlist }: { wordlist: string[]; }): { readonly state: "anonymous" | "signedIn"; readonly logIn: (passphrase: string) => Promise; readonly signUp: (name?: string) => Promise; readonly registerNewAccount: (passphrase: string, name: string) => Promise; readonly generateRandomPassphrase: () => string; readonly passphrase: string; }; //# sourceMappingURL=PassphraseAuth.d.ts.map