/** * Replit connector installer. * * Since Replit has no plugin system, this formats a pre-existing Remnic * bearer token into setup instructions for the Integrations pane. */ interface ReplitInstallResult { token: string; instructions: string; mcpConfig: { url: string; headers: Record; }; } interface ReplitEndpointOptions { host?: string; port?: number; baseUrl?: string | URL; } declare function generateReplitInstructions(token: string, hostOrOptions?: string | URL | ReplitEndpointOptions, port?: number): ReplitInstallResult; export { type ReplitInstallResult, generateReplitInstructions };