/** * data sample report page from 'data-key-set-list-page' * dateKeySetId is required */ import '@operato/data-grist'; import { PageView } from '@operato/shell'; import { FetchOption } from '@operato/data-grist'; declare const DataReportSamplesPage_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 DataReportSamplesPage extends DataReportSamplesPage_base { static styles: import("lit").CSSResult[]; dataKeySetId?: string; dataKeySet: any; container: HTMLIFrameElement; get context(): { title: string; help: string; filters: any[]; }; getDataKeyFilters(): any; render(): import("lit-html").TemplateResult<1>; renderTemplate(filters: any): void; pageUpdated(changes: any, lifecycle: any): void; fetchHandler({ page, limit, sortings, filters }: FetchOption): Promise; updated(changes: any): Promise; } export {};