import type { FieldState } from "./types"; /** * A Key text field * * @typeParam State - State of the field which determines its shape. * @see More details: {@link https://prismic.io/docs/core-concepts/key-text} */ export type KeyTextField = State extends "empty" ? null | "" : string;