import { ChangeEvent } from "react";
import type { UseFieldOptions } from "form-atoms";
import { FieldProps, type UseOptionsProps } from "..";
import type { ZodField, ZodFieldValue } from "../../fields";
/**
* This restricts ZodField to have optional schema defaulting to 'undefined of required schema'.
*/
export type SelectField = ZodField;
export type SelectFieldProps