import { Instruction, Serializable } from '../internal.js'; /** * Deploy Instruction. * * Deploys a code bundle. The code bundle must be a map of filename => content. */ export declare class DeployInstruction extends Instruction { pkgBuf: Uint8Array; constructor(pkgBuf: Uint8Array); } /** * Deploy Args Serializer object - implements the Serializable interface. */ export declare const DeployArgsSerializer: Serializable; //# sourceMappingURL=deploy.d.ts.map