import { FunctionalComponent } from '../../stencil-public-runtime'; export interface FormFieldType { type: string; label?: string; placeholder?: string; hint?: string | FunctionalComponent | null; required?: boolean; handleInputChange?: (inputEvent: Event) => void; value?: string; inputProps?: object; disabled?: boolean; } export interface PhoneFormFieldType extends FormFieldType { dialCode?: string; } export interface FormFieldTypes extends Array { } export interface PhoneNumberInterface { countryDialCodeValue?: string; phoneNumberValue?: string; }