import { Type } from '@angular/core'; import { FieldTypeConfig, FormlyFieldConfig } from '@ngx-formly/core'; import { FieldType, FormlyFieldProps } from '@ngx-formly/bootstrap/form-field'; import * as i0 from "@angular/core"; interface MultiCheckboxProps extends FormlyFieldProps { formCheck?: 'default' | 'inline' | 'switch' | 'inline-switch'; } export interface FormlyMultiCheckboxFieldConfig extends FormlyFieldConfig { type: 'multicheckbox' | Type; } export declare class FormlyFieldMultiCheckbox extends FieldType> { defaultOptions: { props: { formCheck: "default"; }; }; onChange(value: any, checked: boolean): void; isChecked(option: any): any; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};