/** * `useDemoAuth` is a hook that provides a `JazzAuth` object for demo authentication. * * * ```ts * const { state, logIn, signUp, existingUsers } = useDemoAuth(); * ``` * * @category Auth Providers */ export declare function useDemoAuth(): { readonly state: "anonymous" | "signedIn"; readonly logIn: (username: string) => Promise; readonly signUp: (username: string) => Promise; readonly existingUsers: string[]; }; //# sourceMappingURL=DemoAuth.d.ts.map