import { EventEmitter, AfterViewInit, OnDestroy, QueryList, ElementRef, AfterViewChecked } from '@angular/core'; import { MenuItem } from 'primeng/api'; export declare class SplitButtonItemComponent { text: string; value: string; icon: string; } export declare class SplitButtonComponent implements AfterViewInit, AfterViewChecked, OnDestroy { text: string; icon: string; style: any; disabled: boolean; visible: boolean; click: EventEmitter<{}>; items: MenuItem[]; children: QueryList; private subscription; elementRef: ElementRef; constructor(elementRef: ElementRef); onClick(event: any): void; onDropdownClick(event: any): void; ngAfterViewInit(): void; ngAfterViewChecked(): void; ngOnDestroy(): void; createItems(): void; } export declare class SplitButtonModule { }