import { IOption } from '../../../models/IOption'; import { EventEmitter } from '@angular/core'; import { IConfigOptions } from '../../../models/IConfigOptions'; export declare class AutocompleteCheckboxComponent { /** * Options to display as options in the dropdown * Use the IOption interface: { value: string; text: string; selected?: boolean; } * * @internal */ options: IOption[]; /** * Options to display as options in the dropdown * Use the IConfigOptions interface: { disabled: boolean; } * * @internal */ config?: IConfigOptions; /** * Return the selection updated each time the user check an option. * * @internal */ selection: EventEmitter; isDisabled: boolean; constructor(); ngOnInit(): void; onChange: (option: IOption) => void; /** * Return the updated array to the parent component */ private updateSelection; }