import type * as types from "./types"; export interface Custom extends types.ElementBase, types.EditableElement { /** Indicates the type name of the custom form element implementation. */ readonly customType?: string; /** Indicates the current value. */ readonly value?: any; }