export interface InputOptions { [key: string]: any; placeholder?: string; isPassword?: boolean; minLength?: number | undefined; maxLength?: number | undefined; } export declare const InputDefaultOptions: InputOptions; export declare const TextareaDefaultOptions: { editType: string; dialogWidth: number; dialogHeight: number; enableWordCount: boolean; countType: string; onlyShowInDialog: boolean; }; export interface InputGroupOptions extends InputOptions { showClear: true; groupText: string; disabled: boolean; readonly: boolean; editable: boolean; enableViewPassword?: boolean; textAlign?: string; } export declare const InputGroupDefaultOptions: InputGroupOptions; export interface ComboListOptions extends InputOptions { disabled?: boolean; readonly?: boolean; editable?: boolean; panelWidth?: number; panelHeight?: number | string; data?: any; idField: string; valueField: string; textField: string; uri?: string; multiSelect?: boolean; selectedValues?: string; autoWidth?: boolean; enableCancelSelected: boolean; enableClear?: true; itemTemplate?: any; nosearch?: boolean; showDisabledItem?: boolean; disabledField?: string; } export declare const ComboListDefaultOptions: ComboListOptions; export declare const EnumEditorDefaultOptions: { outType: number; readonly: boolean; editable: boolean; disabled: boolean; enableClear: boolean; textField: string; valueField: string; };