import { z } from 'zod' export const NameSchema = z.string().min(1) export type Name = z.infer export interface WithName { name: string }