import './data-report-field.js'; import { LitElement, PropertyValues } from 'lit'; import { ColumnConfig, GristConfig, GristData } from '../types.js'; export declare class DataReportBody extends LitElement { static styles: import("lit").CSSResult[]; config: GristConfig; columns: ColumnConfig[]; data: GristData; focused?: { row: number; column: number; }; private _focusedListener?; render(): import("lit-html").TemplateResult<1>; firstUpdated(): void; updated(changes: PropertyValues): void; focus(): void; }