import { ReportBI, TaskState } from '@wix/bex-core'; import { NestedCollectionState } from './NestedCollectionState'; import { TableVirtualState } from '../TableVirtualState'; import { NestedTableNodeState } from './NestedTableNodeState'; import { NestedTableState } from './NestedTableState'; export interface NestedTableNestedModeStateBaseParams { } export interface NestedTableNestedModeStateParams extends NestedTableNestedModeStateBaseParams { wrapper: NestedTableState; reportBi: ReportBI; } export declare class NestedTableNestedModeState { readonly wrapper: NestedTableState; readonly container: import("@wix/bex-core").WixPatternsContainer; readonly reportBi: ReportBI; readonly nestedCollection: NestedCollectionState; readonly virtual: TableVirtualState, any, any>; readonly initTask: TaskState; readonly root: NestedTableNodeState; constructor(params: NestedTableNestedModeStateParams); get multi(): import("@wix/bex-core").MultiCollectionSupport; get tableState(): import("..").InfiniteScrollTableState; get toolbar(): import("..").ToolbarCollectionState; get total(): number; get originQuery(): import("@wix/bex-core").ComputedQueryFull; get keyedItems(): import("./NestedTableNodeState").NestedTableKeyedItem[]; get _keyedItemsMap(): Map>; getKeyedItem: (key: string) => import("./NestedTableNodeState").NestedTableKeyedItem | undefined; getKeyedItemByIndex: (ind: number) => import("./NestedTableNodeState").NestedTableKeyedItem; get expandAll(): boolean; get isFetchAllAborted(): boolean | null; get showEmptyState(): boolean; get showErrorState(): boolean; get showLoadingState(): boolean; retryErrorState: () => void; get errorStatus(): import("@wix/bex-core").TaskStatusError | undefined; get query(): import("@wix/bex-core").QueryState<{}>; get levels(): import("./NestedTableLevelDescriptor").NestedTableLevelDescriptor[]; init(): () => void; } //# sourceMappingURL=NestedTableNestedModeState.d.ts.map