#!/usr/bin/env node /** * VirtualSMS MCP Server * Receive SMS verification codes with AI agents * https://virtualsms.io */ import { Server } from '@modelcontextprotocol/sdk/server/index.js'; export declare function createSandboxServer(): Server<{ method: string; params?: { [x: string]: unknown; _meta?: { [x: string]: unknown; progressToken?: string | number | undefined; "io.modelcontextprotocol/related-task"?: { taskId: string; } | undefined; } | undefined; } | undefined; }, { method: string; params?: { [x: string]: unknown; _meta?: { [x: string]: unknown; progressToken?: string | number | undefined; "io.modelcontextprotocol/related-task"?: { taskId: string; } | undefined; } | undefined; } | undefined; }, { [x: string]: unknown; _meta?: { [x: string]: unknown; progressToken?: string | number | undefined; "io.modelcontextprotocol/related-task"?: { taskId: string; } | undefined; } | undefined; }>; import { z } from 'zod'; export declare const configSchema: z.ZodObject<{ virtualsmsApiKey: z.ZodString; pollingIntervalSeconds: z.ZodDefault; environment: z.ZodDefault>; preferredCurrency: z.ZodDefault>; }, "strip", z.ZodTypeAny, { virtualsmsApiKey: string; pollingIntervalSeconds: number; environment: "sandbox" | "production"; preferredCurrency: "USD" | "EUR" | "GBP"; }, { virtualsmsApiKey: string; pollingIntervalSeconds?: number | undefined; environment?: "sandbox" | "production" | undefined; preferredCurrency?: "USD" | "EUR" | "GBP" | undefined; }>; //# sourceMappingURL=index.d.ts.map