import * as z from 'zod/mini'; import * as Response from '../../../internal/Response.js'; import type { Environment } from '../App.js'; /** OpenAPI schemas owned by verified-token requests. */ export declare namespace schema { /** * An organization's verification request (response shape). `reviewedBy` is * deliberately absent: reviewer identity stays on the admin surface. */ const VerifiedTokenRequest: z.ZodMiniObject<{ address: z.ZodMiniPipe, z.ZodMiniTransform<`0x${string}`, `0x${string}`>>; currency: z.ZodMiniString; decimals: z.ZodMiniNumber; logoUri: z.ZodMiniOptional; name: z.ZodMiniString; symbol: z.ZodMiniString; chainId: z.ZodMiniNumber; createdAt: z.ZodMiniISODateTime; id: z.ZodMiniString; logo: z.ZodMiniOptional>; note: z.ZodMiniNullable>; orgId: z.ZodMiniString; requestedBy: z.ZodMiniString; reviewNote: z.ZodMiniNullable>; reviewedAt: z.ZodMiniNullable; status: z.ZodMiniEnum<{ approved: "approved"; denied: "denied"; pending: "pending"; }>; updatedAt: z.ZodMiniISODateTime; }, z.core.$strip>; /** * Create body. The shared token fields trust admin curation, so the * member-facing surface re-declares them with length caps. */ const CreateBody: z.ZodMiniObject<{ address: z.ZodMiniPipe, z.ZodMiniTransform<`0x${string}`, `0x${string}`>>; decimals: z.ZodMiniNumber; chainId: z.ZodMiniPipe, z.ZodMiniTransform<4217 | 42431, "mainnet" | "testnet">>, z.ZodMiniPipe, z.ZodMiniTransform>]>, z.ZodMiniNumber>; currency: z.ZodMiniString; logo: z.ZodMiniOptional>; logoUri: z.ZodMiniOptional; name: z.ZodMiniString; note: z.ZodMiniOptional>; symbol: z.ZodMiniString; }, z.core.$strip>; /** Non-paginated list of an organization's requests. */ const ListResponse: z.ZodMiniObject<{ data: z.ZodMiniArray, z.ZodMiniTransform<`0x${string}`, `0x${string}`>>; currency: z.ZodMiniString; decimals: z.ZodMiniNumber; logoUri: z.ZodMiniOptional; name: z.ZodMiniString; symbol: z.ZodMiniString; chainId: z.ZodMiniNumber; createdAt: z.ZodMiniISODateTime; id: z.ZodMiniString; logo: z.ZodMiniOptional>; note: z.ZodMiniNullable>; orgId: z.ZodMiniString; requestedBy: z.ZodMiniString; reviewNote: z.ZodMiniNullable>; reviewedAt: z.ZodMiniNullable; status: z.ZodMiniEnum<{ approved: "approved"; denied: "denied"; pending: "pending"; }>; updatedAt: z.ZodMiniISODateTime; }, z.core.$strip>>; }, z.core.$strip>; /** Path parameters addressing an organization's requests. */ const Params: z.ZodMiniObject<{ orgId: z.ZodMiniString; }, z.core.$strip>; /** Path parameters addressing one verification request. */ const RequestParams: z.ZodMiniObject<{ orgId: z.ZodMiniString; requestId: z.ZodMiniString; }, z.core.$strip>; /** Cancel confirmation. */ const DeleteResponse: z.ZodMiniObject<{ id: z.ZodMiniString; }, z.core.$strip>; } /** Mounts organization verified-token request operations. */ export declare function verifiedTokenRequests(): import("hono/hono-base").HonoBase; //# sourceMappingURL=verified-token-requests.d.ts.map