import * as z from 'zod/mini'; import * as Response from '../../../internal/Response.js'; import type { Environment } from '../App.js'; /** OpenAPI schemas owned by the sandbox faucet. */ export declare namespace schema { /** Faucet request body. */ const FundBody: z.ZodMiniObject<{ address: z.ZodMiniPipe, z.ZodMiniTransform<`0x${string}`, `0x${string}`>>; }, z.core.$strip>; /** Faucet response. */ const FundResponse: z.ZodMiniObject<{ tokens: z.ZodMiniArray; currency: z.ZodMiniString; decimals: z.ZodMiniNumber; formatted: z.ZodMiniString; }, z.core.$strip>; token: z.ZodMiniObject<{ address: z.ZodMiniPipe, z.ZodMiniTransform<`0x${string}`, `0x${string}`>>; currency: z.ZodMiniString; decimals: z.ZodMiniNumber; name: z.ZodMiniString; symbol: z.ZodMiniString; }, z.core.$strip>; transactionHash: z.ZodMiniPipe, z.ZodMiniTransform<`0x${string}`, `0x${string}`>>; }, z.core.$strip>>; transactionHashes: z.ZodMiniArray, z.ZodMiniTransform<`0x${string}`, `0x${string}`>>>; }, z.core.$strip>; /** Faucet path parameters. */ const Params: z.ZodMiniObject<{ orgId: z.ZodMiniString; }, z.core.$strip>; } /** Mounts the session-authenticated Tempo testnet faucet. */ export declare function faucet(): import("hono/hono-base").HonoBase; //# sourceMappingURL=faucet.d.ts.map