import { OnInit } from '@angular/core'; import { Table } from '../../../models'; import { UglaService } from '../../../ugla.service'; /** * @example * * */ export declare class SimpleTableComponent implements OnInit { private ugla; table: Table; /** * Property to receive the style of the table * could be: fixed central o empty. */ style: string; /** * Property to receive the message for empty list. * Default: No data found. */ noDataMessage: string; classes: string; theme: string; /** * Receives the component's name * @param ugla: UglaService */ constructor(ugla: UglaService); ngOnInit(): void; setClass(color: string, align: string, type: string): string; }