import * as z from 'zod/mini';
/** Hex quantity decoded as `bigint` and encoded as hex. */
export declare const BigInt: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
/** Encode-only hex quantity accepting `Hex | bigint | number`. */
export declare const BigIntToRpc: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
//# sourceMappingURL=BigInt.d.ts.map