import { entityKind } from "../../entity.cjs"; import { SQL, type SQLWrapper } from "../../sql/sql.cjs"; import type { SQLiteSession } from "../session.cjs"; import type { SQLiteTable } from "../table.cjs"; import type { SQLiteView } from "../view.cjs"; export declare class SQLiteCountBuilder> extends SQL implements Promise, SQLWrapper { readonly params: { source: SQLiteTable | SQLiteView | SQL | SQLWrapper; filters?: SQL; session: TSession; }; private sql; static readonly [entityKind] = "SQLiteCountBuilderAsync"; [Symbol.toStringTag]: string; private session; private static buildEmbeddedCount; private static buildCount; constructor(params: { source: SQLiteTable | SQLiteView | SQL | SQLWrapper; filters?: SQL; session: TSession; }); then(onfulfilled?: ((value: number) => TResult1 | PromiseLike) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike) | null | undefined): Promise; catch(onRejected?: ((reason: any) => never | PromiseLike) | null | undefined): Promise; finally(onFinally?: (() => void) | null | undefined): Promise; }