import { type Address, type Hex } from "viem"; export type ValueParams = string | Address | Hex | number | bigint | boolean | string[] | Address[] | Hex[] | number[] | bigint[] | boolean[]; export type FunctionParams = { type: string; value: ValueParams; }; export declare function encodeFunctionParams(params: FunctionParams[]): Hex;