import * as z from 'zod/mini'; /** RPC withdrawal schema decoded to a withdrawal. */ export declare const Withdrawal: z.ZodMiniObject<{ address: z.ZodMiniTemplateLiteral<`0x${string}`>; amount: z.ZodMiniCodec, z.ZodMiniBigInt>; index: z.ZodMiniCodec, z.ZodMiniNumberFormat>; validatorIndex: z.ZodMiniCodec, z.ZodMiniNumberFormat>; }, z.core.$strip>; /** Encode-only withdrawal schema accepting numberish `toRpc` inputs. */ export declare const WithdrawalToRpc: z.ZodMiniObject<{ address: z.ZodMiniTemplateLiteral<`0x${string}`>; amount: z.ZodMiniCodec, z.ZodMiniUnion, z.ZodMiniBigInt, z.ZodMiniNumberFormat]>>; index: z.ZodMiniCodec, z.ZodMiniUnion, z.ZodMiniNumberFormat]>>; validatorIndex: z.ZodMiniCodec, z.ZodMiniUnion, z.ZodMiniNumberFormat]>>; }, z.core.$strip>; //# sourceMappingURL=Withdrawal.d.ts.map