import type { FieldState } from "./types" /** * A date field. * * @typeParam State - State of the field which determines its shape. * @see More details: {@link https://prismic.io/docs/date} */ export type DateField = State extends "empty" ? null : string