import { LitElement } from 'lit'; export declare class BurnishTable extends LitElement { static properties: { title: { type: StringConstructor; }; columns: { type: StringConstructor; }; rows: { type: StringConstructor; }; 'status-field': { type: StringConstructor; attribute: string; }; _page: { state: boolean; }; _pageSize: { state: boolean; }; _sortKey: { state: boolean; }; _sortDir: { state: boolean; }; _filter: { state: boolean; }; }; static styles: import("lit").CSSResult; title: string; columns: string; rows: string; 'status-field': string; _page: number; _pageSize: number; _sortKey: string; _sortDir: 'asc' | 'desc'; _filter: string; constructor(); private _onSort; private _onFilter; private _onPageSize; private _onRowExplore; render(): import("lit").TemplateResult<1>; } //# sourceMappingURL=table.d.ts.map