import { HashMapOfStrings } from '.';
/**
 * Interface defining the property object that describes the custom form fields.
 *
 * @see [CustomFormField](https://github.com/goboomtown/entities-ts/tree/master/docs)
 *
 * @OvationCXMApi
 */
export interface CustomFormField {
    id?: string;
    type?: string;
    name?: string;
    label?: string;
    defaultValue?: string;
    listItems?: HashMapOfStrings;
}
