import { BaseFetch } from "@executors/base_fetch"; import { ICountQuery } from "@/common"; import { IDBUtil } from "@/worker/idbutil"; import { executeWhereUndefinedLogic } from "@executors/count/not_where"; export declare class Count extends BaseFetch { query: ICountQuery; resultCount: number; executeWhereUndefinedLogic: typeof executeWhereUndefinedLogic; constructor(query: ICountQuery, util: IDBUtil); execute(beforeExecute: () => Promise): Promise; private initTransaction_; }