import { Type } from '@angular/core'; import { FieldTypeConfig, FormlyFieldConfig } from '@ngx-formly/core'; import { FieldType, FormlyFieldProps } from '@ngx-formly/bootstrap/form-field'; import { FormlyFieldSelectProps } from '@ngx-formly/core/select'; import * as i0 from "@angular/core"; interface SelectProps extends FormlyFieldProps, FormlyFieldSelectProps { multiple?: boolean; compareWith?: (o1: any, o2: any) => boolean; } export interface FormlySelectFieldConfig extends FormlyFieldConfig { type: 'select' | Type; } export declare class FormlyFieldSelect extends FieldType> { defaultOptions: { props: { compareWith(o1: any, o2: any): boolean; }; }; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};