import type { DbOperation } from './types.ts'; interface GetUsersCountResult { count: number; } /** * Get the total count of users in the database * @param client Database client * @returns The count of users */ export declare const getUsersCount: DbOperation<[], GetUsersCountResult>; export {}; //# sourceMappingURL=getUsersCount.d.ts.map