/** * A container for contract's WASM bytes. */ export declare class ContractWasm { /** * The WASM bytes of the contract as a string. */ bytes: string; constructor(bytes: string); }