import { z } from "zod" export const stateSchema = z.object({ intent: z.enum(["link", "unlink", "transfer"]), }) export type State = z.infer