import { URL } from 'url'; interface Fort { token: string; url: URL; } declare class Citadel { forts: Fort[]; constructor(token: string, urls: URL[]); store(payloads: string[], _key: Uint8Array): Promise; retrieve(_key: Uint8Array): Promise; private putSecret; private getSecret; } export { Citadel };