import { Hex } from 'viem';

type Bytes = ArrayLike<number>;
interface TypedDataField {
    name: string;
    type: string;
}
type BytesLike = Uint8Array | Hex | Bytes | String;

export type { Bytes, BytesLike, TypedDataField };
