/**
 * @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 { CdkTextareaAutosize } from '@angular/cdk/text-field';
/**
 * Directive to automatically resize a textarea to fit its content.
 * @deletion-target 7.0.0 deprecate in favor of `cdkTextareaAutosize`.
 */
export declare class MatTextareaAutosize extends CdkTextareaAutosize {
    matAutosizeMinRows: number;
    matAutosizeMaxRows: number;
}
