import { Abi } from './abi/types.js'; /** * Parses the given binary data to an ABI interface. */ export declare function abiFromBin(data: Uint8Array): Abi; /** * Parses the given JSON data to an ABI interface. */ export declare function abiFromJson(json: string): Abi; /** * Serializes the given ABI interface to binary data. */ export declare function abiToBin(abi: Abi): Uint8Array; /** * Serializes the given ABI interface to JSON data. */ export declare function abiToJson(abi: Abi, space?: number): string; //# sourceMappingURL=abi.d.ts.map