import { CountFilter, CountOptions, CountResult } from '@napplet/core'; /** * Napplet NAP count sdk entrypoint. * * @module */ /** * @napplet/nap/count -- SDK helpers wrapping window.napplet.count. */ /** * Ask the runtime to count events matching NIP-01 filters. * * @param filters One NIP-01 filter or a non-empty array of filters * @param options Optional approximation and HyperLogLog hints * @returns Promise resolving to the runtime count result */ declare function countQuery(filters: CountFilter | CountFilter[], options?: CountOptions): Promise; export { countQuery };