import * as z from 'zod'; /** Zod schema that validates a string is a properly formatted 40-character hex address. */ export declare const AddressValidationZod: z.ZodPipe & { readonly __hex: true; } & { readonly __address: true; }, string>>; /** The output type of AddressValidationZod after parsing. */ export type AddressValidationZodType = z.infer; //# sourceMappingURL=AddressValidationZod.d.ts.map