import '@material/web/icon/icon.js'; import '@operato/data-grist'; import '@operato/context/ox-context-page-toolbar.js'; import '@operato/board/ox-board-viewer.js'; import '../../components/data-entry-form.js'; import '../../components/checklist-entry-form.js'; import { FetchOption } from '@operato/data-grist'; import { PageView } from '@operato/shell'; declare const DataEntryListPage_base: (new (...args: any[]) => { _storeUnsubscribe: import("redux").Unsubscribe; connectedCallback(): void; disconnectedCallback(): void; stateChanged(_state: unknown): void; readonly isConnected: boolean; }) & (new (...args: any[]) => import("lit").LitElement) & typeof PageView; export declare class DataEntryListPage extends DataEntryListPage_base { static styles: import("lit").CSSResult[]; private gristConfig; private grist; get context(): { title: string; search: { handler: (search: string) => void; value: string; }; filter: { handler: () => void; }; help: string; toolbar: boolean; }; render(): import("lit-html").TemplateResult<1>; pageInitialized(lifecycle: any): Promise; fetchHandler({ page, limit, sortings, filters }: FetchOption): Promise<{ total: any; records: any; }>; } export {};