import { OnInit, TemplateRef } from '@angular/core'; import { DropdownMenuItemWrapper } from '../DropdownMenuItem'; import * as i0 from "@angular/core"; export declare class DropDownItemComponent implements OnInit { itemTemplate: TemplateRef | null; groupTemplate: TemplateRef | null; activeItem?: any; activeItems?: any; selectKey: string | null; optionValue?: string; optionLabel?: string; optionSubLabel?: string; loadMoreCaption?: string; multiselect: boolean; options: any[]; group: boolean; onExpand?: (item: DropdownMenuItemWrapper, siblings: DropdownMenuItemWrapper[]) => Promise; onLoadMore?: (item: DropdownMenuItemWrapper) => Promise; onSelect?: (value: any, event: Event) => void; constructor(); ngOnInit(): void; isEqual(value: any, other: any): boolean; isSelected(value: any[], other: any): boolean; getValue(item: any): any; getOptionLabel(item: any): any; getOptionSubLabel(item: any): any; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }