ZodRecordDef
import type { ZodRecordDef } from "https://esm.sh/zod@3.25.76/index.d.cts";interface ZodRecordDef <Key extends KeySchema = ZodString, Value extends ZodTypeAny = ZodTypeAny> extends ZodTypeDef {
keyType: Key;
typeName: ZodFirstPartyTypeKind.ZodRecord;
valueType: Value;
}