Type alias SelectElement

SelectElement: FormElementWithOptionsBase & {
    autocompleteAttributes?: string[];
    canToggleAll?: boolean;
    defaultValue?: string | string[];
    multi: boolean;
    type: "select";
}