import { RebaseAuthController, RebaseAuthControllerProps } from "./types.js"; /** * Auth controller hook for JWT-based authentication. * * This is a thin React binding over the headless SDK `client.auth`. * It synchronizes React state with the SDK's internal state and delegates * all operations to the SDK to ensure a single source of truth for * authentication sessions across the entire application. * * @param props Configuration options * @returns RebaseAuthController instance */ export declare function useRebaseAuthController(props?: RebaseAuthControllerProps): RebaseAuthController;