// src/next/client.ts import { useQuery, UrqlProvider, ClientOptions, SSRExchange, Client, } from '@urql/next' export * from 'urql' export { UrqlProvider as Provider, useQuery } type Optional = Pick, K> & Omit export function createClient(opts: Optional): { client: Client ssr: SSRExchange }