import { entityKind } from "../../entity.cjs"; import { SQL, type SQLWrapper } from "../../sql/sql.cjs"; import type { NeonAuthToken } from "../../utils.cjs"; import type { PgSession } from "../session.cjs"; import type { PgTable } from "../table.cjs"; export declare class PgCountBuilder> extends SQL implements Promise, SQLWrapper { readonly params: { source: PgTable | SQL | SQLWrapper; filters?: SQL; session: TSession; }; private sql; private token?; static readonly [entityKind] = "PgCountBuilder"; [Symbol.toStringTag]: string; private session; private static buildEmbeddedCount; private static buildCount; constructor(params: { source: PgTable | SQL | SQLWrapper; filters?: SQL; session: TSession; }); /** @intrnal */ setToken(token?: NeonAuthToken): this; then(onfulfilled?: ((value: number) => TResult1 | PromiseLike) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike) | null | undefined): Promise; catch(onRejected?: ((reason: any) => any) | null | undefined): Promise; finally(onFinally?: (() => void) | null | undefined): Promise; }