/** * @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, QueryList, AfterContentInit } from '@angular/core'; import { MatLine } from '@angular/material/core'; import { NumberInput } from '@angular/cdk/coercion'; import { MatGridListBase } from './grid-list-base'; import * as ɵngcc0 from '@angular/core'; export declare class MatGridTile { private _element; _gridList?: MatGridListBase | undefined; _rowspan: number; _colspan: number; constructor(_element: ElementRef, _gridList?: MatGridListBase | undefined); /** Amount of rows that the grid tile takes up. */ get rowspan(): number; set rowspan(value: number); /** Amount of columns that the grid tile takes up. */ get colspan(): number; set colspan(value: number); /** * Sets the style of the grid-tile element. Needs to be set manually to avoid * "Changed after checked" errors that would occur with HostBinding. */ _setStyle(property: string, value: any): void; static ngAcceptInputType_rowspan: NumberInput; static ngAcceptInputType_colspan: NumberInput; static ɵfac: ɵngcc0.ɵɵFactoryDeclaration; static ɵcmp: ɵngcc0.ɵɵComponentDeclaration; } export declare class MatGridTileText implements AfterContentInit { private _element; _lines: QueryList; constructor(_element: ElementRef); ngAfterContentInit(): void; static ɵfac: ɵngcc0.ɵɵFactoryDeclaration; static ɵcmp: ɵngcc0.ɵɵComponentDeclaration; } /** * Directive whose purpose is to add the mat- CSS styling to this selector. * @docs-private */ export declare class MatGridAvatarCssMatStyler { static ɵfac: ɵngcc0.ɵɵFactoryDeclaration; static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration; } /** * Directive whose purpose is to add the mat- CSS styling to this selector. * @docs-private */ export declare class MatGridTileHeaderCssMatStyler { static ɵfac: ɵngcc0.ɵɵFactoryDeclaration; static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration; } /** * Directive whose purpose is to add the mat- CSS styling to this selector. * @docs-private */ export declare class MatGridTileFooterCssMatStyler { static ɵfac: ɵngcc0.ɵɵFactoryDeclaration; static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration; } //# sourceMappingURL=grid-tile.d.ts.map