import * as z from 'zod'; /** Zod schema that accepts a string, bigint, or number and transforms it into a validated Address. */ export declare const AddressTransformZod: z.ZodPipe, z.ZodTransform>, z.ZodTransform & { readonly __hex: true; } & { readonly __address: true; }, string>>; /** The output type of AddressTransformZod after parsing and transformation. */ export type AddressTransformZodType = z.infer; //# sourceMappingURL=AddressTransformZod.d.ts.map