/** * @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, AfterViewInit } from '@angular/core'; import { Table } from './table'; /** * 表格:thead */ export declare class TableContentHeader implements AfterViewInit { private _renderer; private _elementRef; private table; /** 样式前缀 */ readonly prefixCls: string; constructor(_renderer: Renderer, _elementRef: ElementRef, table: Table); ngAfterViewInit(): void; }