import { CustomTypeModelFieldType } from "./types.js";

//#region src/types/model/keyText.d.ts
/**
 * A key text custom type field.
 *
 * More details: {@link https://prismic.io/docs/key-text}
 */
interface CustomTypeModelKeyTextField {
  type: typeof CustomTypeModelFieldType.Text;
  config?: {
    label?: string | null;
    placeholder?: string;
  };
}
//#endregion
export { CustomTypeModelKeyTextField };
//# sourceMappingURL=keyText.d.ts.map