import { OnInit, Renderer2, ElementRef } from '@angular/core'; export declare class GridModeLoadComponent implements OnInit { private renderer; private elementRef; hide: boolean; protected _customClass: string; el: HTMLElement; _hide: boolean; customClass: string; constructor(renderer: Renderer2, elementRef: ElementRef); ngOnInit(): void; /** * 显示正在加载中 */ showLoading(): void; /** * 隐藏正在加载中 */ hideLoading(): void; }