/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { ElementRef, NgZone } from '@angular/core'; import { ColumnResize } from '../column-resize'; import { ColumnResizeNotifier, ColumnResizeNotifierSource } from '../column-resize-notifier'; import { HeaderRowEventDispatcher } from '../event-dispatcher'; import * as i0 from "@angular/core"; /** * Explicitly enables column resizing for a table-based mat-table. * Individual columns must be annotated specifically. */ export declare class MatColumnResize extends ColumnResize { readonly columnResizeNotifier: ColumnResizeNotifier; readonly elementRef: ElementRef; protected readonly eventDispatcher: HeaderRowEventDispatcher; protected readonly ngZone: NgZone; protected readonly notifier: ColumnResizeNotifierSource; constructor(columnResizeNotifier: ColumnResizeNotifier, elementRef: ElementRef, eventDispatcher: HeaderRowEventDispatcher, ngZone: NgZone, notifier: ColumnResizeNotifierSource); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }