import type { createAuthClient } from "aau-auth-kit/react";

export type AnyAuthClient = Omit<
  ReturnType<typeof createAuthClient>,
  "signUp" | "getSession"
>;
