/** * @license * Copyright 厦门乾元盛世科技有限公司 All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file. */ import { ElementRef, Renderer } from '@angular/core'; import { Table } from './table'; /** * 表格:标题 */ export declare class TableHeader { private _renderer; private _elementRef; private table; /** 用户CSS样式 */ class: string; /** 样式前缀 */ readonly prefixCls: string; constructor(_renderer: Renderer, _elementRef: ElementRef, table: Table); readonly classes: string; }