import { EventEmitter } from '@angular/core'; import { Button, Tile } from '../../models/tile.model'; import { AlignType } from '@ieeesa-npm/models'; import * as i0 from "@angular/core"; /** * Creates tile component. * @export * @class TileComponent */ export declare class TileComponent { alignmentType: typeof AlignType; private tilesInfo; /** * Input property to get the tiles info. * @type {Tile} * @memberof TileComponent */ set tiles(value: Tile[]); get tiles(): Tile[]; /** * Emits the click event * @type {EventEmitter} * @memberof TileComponent */ tileClicked: EventEmitter; private buttonAlignment; /** * Sets tile buttons alignment type.. * @type {string} accepts Left, Right and Middle as values * @memberof TileComponent */ set buttonAlignmentInfo(value: AlignType); get buttonAlignmentInfo(): AlignType; trackByFn(index: number, item: Tile): string; trackByButtonFn(index: number, item: Button): string; onTileButtonClicked(tile: Tile): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }