import { FormlyFieldProps } from "@ngx-formly/core"; interface SelectSubInterface { label: string; supportText: string; dropIcon: string; dropIconPosition: string; multiple: boolean; iconPath: string; type: string; state: string; filling: string; iconPosition: string; } export interface SelectInterface extends FormlyFieldProps { options: any; disabled: boolean; params: SelectSubInterface; } export {};