import type { NodeInfoResponse } from './types.js'; import type { CommonPubConfig } from '@commonpub/config'; export interface BuildNodeInfoOptions { config: CommonPubConfig; version: string; userCount: number; activeMonthCount: number; localPostCount: number; } export declare function buildNodeInfoResponse(options: BuildNodeInfoOptions): NodeInfoResponse; export declare function buildNodeInfoWellKnown(domain: string): { links: Array<{ rel: string; href: string; }>; }; //# sourceMappingURL=nodeinfo.d.ts.map