import { Instruction, Serializable } from '../internal.js'; /** * Sign To Instruction. * * The given signature and pubkey signs the transaction instructions before this * instruction. */ export declare class SignToInstruction extends Instruction { sig: Uint8Array; pubkey: Uint8Array; constructor(sig: Uint8Array, pubkey: Uint8Array); } /** * Sign To Args Serializer object - implements the Serializable interface. */ export declare const SignToArgsSerializer: Serializable; //# sourceMappingURL=signto.d.ts.map