import { z } from "zod"; /** * Zod schema for token unit */ export declare const TokenUnitSchema: z.ZodObject<{ code: z.ZodString; name: z.ZodString; magnitude: z.ZodNumber; }, z.core.$strip>; export type TokenUnit = z.infer; /** * Zod schema for API token response */ export declare const ApiTokenResponseSchema: z.ZodObject<{ id: z.ZodString; contract_address: z.ZodString; standard: z.ZodString; decimals: z.ZodNumber; delisted: z.ZodBoolean; name: z.ZodString; ticker: z.ZodString; units: z.ZodArray>; token_identifier: z.ZodOptional; live_signature: z.ZodOptional; }, z.core.$strip>; export type ApiTokenResponse = z.infer; //# sourceMappingURL=index.d.ts.map