import type { Call } from './types.js'; export interface CallInput { readonly target: string; readonly value?: bigint; readonly data?: `0x${string}`; } export declare function normalizeCall(input: CallInput): Call; export declare function normalizeCalls(inputs: readonly CallInput[]): readonly Call[]; //# sourceMappingURL=normalize.d.ts.map