import type { AutocompleteProps, CheckboxGroupProps, CheckboxProps, DatePickerProps, ElProps, FieldsetProps, FileUploaderProps, InputProps, InputStates, RadioGroupProps, SelectProps, SwitchProps } from '..'; export interface FormFieldProps extends Partial { /** * Set the text label of FormField */ label?: string; /** * Set the FormField required */ required?: boolean; /** * Define hint for the FormField */ hint?: string; /** * Set the validation state of FormField */ state?: InputStates; } export interface FormAutocompleteProps extends Partial, Partial { } export interface FormCheckboxGroupProps extends Partial, Partial { } export interface FormCheckboxProps extends Partial, Partial { } export interface FormInputProps extends Partial, Partial { } export interface FormFileUploaderProps extends Partial, Partial { } export interface FormTextAreaProps extends Partial { rows?: number | string; } export interface FormDatePickerProps extends Partial, Partial { } export interface FormRadioGroupProps extends Partial, Partial { } export interface FormSelectProps extends Partial, Partial { } export interface FormSwitchProps extends Partial, Partial { } export interface FormFieldsetProps extends Partial, Partial { }