import { ElementRef, ViewContainerRef, Renderer2 } from '@angular/core'; import { IComponentBase } from '@syncfusion/ej2-ng-base'; import { SplitButton } from '@syncfusion/ej2-splitbuttons'; export declare const inputs: string[]; export declare const outputs: string[]; export declare const twoWays: string[]; /** * Represents the Angular SplitButton Component. * ```html * * ``` */ export declare class SplitButtonComponent extends SplitButton implements IComponentBase { private ngEle; private srenderer; private viewContainerRef; constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef); ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; ngAfterContentChecked(): void; registerEvents: (eventList: string[]) => void; addTwoWay: (propList: string[]) => void; }