import type { Storage } from './storage.js'; import type { TrustEngine } from './engine.js'; import type { TrustMeshConfig } from './types.js'; export declare function startServer(storage: Storage, engine: TrustEngine, nodeId: string, config?: Partial & { apiKey?: string; stripeKey?: string; stripeWebhookSecret?: string; billingDbPath?: string; emailConfig?: { host: string; port: number; user: string; pass: string; from: string; }; }): Promise, import("http").IncomingMessage, import("http").ServerResponse, import("fastify").FastifyBaseLogger, import("fastify").FastifyTypeProviderDefault>>;