import { Instruction, Serializable } from '../internal.js'; /** * Lock Instruction. * * Locks a instance to the given pubkeyHash. */ export declare class LockInstruction extends Instruction { idx: number; pubkeyHash: Uint8Array; constructor(idx: number, pubkeyHash: Uint8Array); } /** * Lock Args Serializer object - implements the Serializable interface. */ export declare const LockArgsSerializer: Serializable; //# sourceMappingURL=lock.d.ts.map