import { Type } from "../types";
/**
 * Returns a more human readable field type.
 */
export default function fieldTypeAsString(type: Type): "Text" | "Numeric" | "Text Area" | "Predefined Options" | "Text with Unit" | "Numeric with Unit" | "Date" | "Date Range" | "Date & Time Range" | "Date & Time" | "Time" | "Time Range" | "Country" | "Contact" | "User" | "Team" | "Activity Link" | "Linked Activities" | "Subheader" | "Unknown Field Type";
