import { z } from "zod" export const SAS_TOKEN_STORAGE_KEY = "sas-x-scandic-token" export const stateSchema = z.object({ intent: z.enum(["link", "unlink"]), }) export type State = z.infer