import '@material/web/icon/icon.js'; import '@operato/data-grist'; import '@operato/context/ox-context-page-toolbar.js'; import './data-key-set-importer.js'; import './data-key-item-list.js'; import { FetchOption } from '@operato/data-grist'; import { PageView } from '@operato/shell'; declare const DataKeySetListPage_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 DataKeySetListPage extends DataKeySetListPage_base { static styles: import("lit").CSSResult[]; gristConfig: any; mode: 'CARD' | 'GRID' | 'LIST'; private grist; get context(): { title: string; search: { handler: (search: string) => void; value: string; }; filter: { handler: () => void; }; help: string; actions: ({ title: string; action: () => Promise; icon: string; emphasis?: undefined; } | { title: string; action: () => Promise; icon: string; emphasis: { danger: boolean; }; })[]; exportable: { name: string; data: () => Promise<{}[]>; }; importable: { handler: (records: any) => Promise; }; toolbar: boolean; }; render(): import("lit-html").TemplateResult<1>; pageInitialized(lifecycle: any): Promise; pageUpdated(changes: any, lifecycle: any): Promise; fetchHandler({ page, limit, sortings, filters }: FetchOption): Promise<{ total: any; records: any; }>; _deleteDataKeySet(): Promise; _updateDataKeySet(): Promise; exportHandler(): Promise<{}[]>; importHandler(records: any): Promise; } export {};