createTRPCNext from https://github.com/trpc/examples-next-prisma-starter after converting a large legacy router a la the v9 -> v10 migration guide, however I keep getting a large type error on config({ ctx }): is not assignable to type '(info: { ctx?: NextPageContext | undefined; }) => WithTRPCConfig<Router<...Property 'useQuery' does not exist on type 'CreateTRPCNextBasepages/_app I am doing export default trpc.withTRPC(MyApp); , where trpc is the type error-throwing export const trpc = createTRPCNext 
