export declare function hexToBytes(hex: string): Uint8Array; export declare function bytesToHex(bytes: Uint8Array | Number | bigint, padToBytes?: number): string; export declare function keccak256(data: Uint8Array | string): string; export declare class FetchError extends Error { status: number; constructor(message: string, status: number); } export declare function fetchJSON(url: string): Promise; export declare function addressWithChecksum(address: string): string;