import { EventManagerPlugin } from "@angular/platform-browser"; import * as i0 from "@angular/core"; export declare class SdResizeEventPlugin extends EventManagerPlugin { constructor(); supports(eventName: string): boolean; addEventListener(element: HTMLElement, eventName: string, handler: (entry: ISdResizeEvent) => void): () => void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } export interface ISdResizeEvent { heightChanged: boolean; widthChanged: boolean; target: Element; contentRect: DOMRectReadOnly; }