import { Type } from '@angular/core'; import { FieldType, FieldTypeConfig, DeonFieldConfig } from '@gram-deon/core'; import { DeonFieldProps } from '@gram-deon/ionic/form-field'; import { DeonFieldSelectProps } from '@gram-deon/core/select'; import * as i0 from "@angular/core"; interface SelectProps extends DeonFieldProps, DeonFieldSelectProps { compareWith?: ((currentValue: any, compareValue: any) => boolean) | null | string | undefined; multiple?: boolean; interface?: 'action-sheet' | 'alert' | 'popover'; okText?: string; cancelText?: string; } export interface DeonSelectFieldConfig extends DeonFieldConfig { type: 'select' | Type; } export declare class DeonFieldSelect extends FieldType> { defaultOptions: { props: { compareWith(o1: any, o2: any): boolean; }; }; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};