/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; export interface InputField { /** Unique key for a Field. */ key: string; /** Visible name of a Field. */ label: string; /** Brief description below the name of the Field. */ description?: string; /** Field Types inform the user interface how to sort and display data. */ type: string; /** Default value for a Field. */ defaultValue?: any; /** Additional configuration for enum Fields. */ config?: Flatfile.InputConfig; /** Indicate additional validations that will be applied to the Field. */ constraints?: Flatfile.InputConstraint[]; }