import { BlockDescription } from "../../../aggregate/Blocks"; export type DomainTreeEntry = { domain: string; groupCount: number; count?: number; subdomains?: DomainTreeEntry[]; }; export interface DomainsStats { counts: { /** Number of times each domain has been linked */ domains: number[]; /** Number of links each author has sent */ authors: number[]; /** Number of links sent in each channel */ channels: number[]; }; /** Tree of domains with counts in the leafs */ tree: DomainTreeEntry; } declare const _default: BlockDescription<"domains/stats", DomainsStats, undefined>; export default _default;