import { TEth } from '../../models/TEth'; export declare namespace $bytecode { /** * remove the constructor code, leave the runtime bytecode only */ function trimConstructorCode(code: TEth.Hex): `0x${string}`; function splitToMetadata(code: TEth.Hex): { bytecode: `0x${string}`; metadata: `0x${string}`; }; function parseContractCreation(input: TEth.Hex): { arguments: TEth.Hex; }; }