import './data-report-header.js'; import './data-report-body.js'; import { LitElement, PropertyValues } from 'lit'; import { ColumnConfig, GristConfig, GristData } from '../types.js'; /** * DataReportComponent */ export declare class DataReportComponent extends LitElement { static styles: import("lit").CSSResult[]; config: GristConfig; data: GristData; private _widths; body: HTMLElement; header: HTMLElement; firstUpdated(): void; updated(changes: PropertyValues): void; calculateWidths(columns: ColumnConfig[]): void; render(): import("lit-html").TemplateResult<1>; focus(): void; get pullToRefreshTarget(): HTMLElement; }