/**
 * Returns the current access token.
 *
 * @experimental This API is VERY experimental and might change in the future.
 * @defaultValue `null` if not authenticated.
 *
 * @category Misc
 * @group Hooks
 */
export declare function useAccessToken(): string | null;
/**
 * Returns the current identity token.
 *
 * @experimental This API is VERY experimental and might change in the future.
 * @defaultValue `null` if not authenticated.
 *
 * @category Misc
 * @group Hooks
 */
export declare function useIdentityToken(): string | null;
/**
 * Returns the current refresh token.
 *
 * @experimental This API is VERY experimental and might change in the future.
 * @defaultValue `null` if not authenticated.
 *
 * @category Misc
 * @group Hooks
 */
export declare function useRefreshToken(): string | null;
