import type { Hash } from '@ariestools/sdk'; import type { NetworkNodePayload } from '@xyo-network/sdk'; /** Network node payload for an archivist preset, optionally with explorer map hashes. */ export type ArchivistPreset = NetworkNodePayload & { explorerMapHashes?: { animatedAnswerHashes: Hash[]; staticAnswerHash: Hash; }; }; /** Finds an archivist preset by slug, falling back to the first preset. */ export declare const findArchivistPreset: (slug: string) => ArchivistPreset; /** Built-in archivist node presets for Kerplunk, Main, Local, and related environments. */ export declare const archivistPresets: ArchivistPreset[]; //# sourceMappingURL=archivistPresets.d.ts.map