import { z } from 'zod';const definition = z.string();export type clientInput = z.input<typeof definition>;thingIWant is a string. In this case I get: import { z } from 'zod';declare const definition: z.ZodString;export type clientInput = z.input<typeof definition>;export {};export type clientInput = string;