import { TransactionInstruction, PublicKey } from "@solana/web3.js"; export interface SignTermsArgs { signature: Array; } export interface SignTermsAccounts { owner: PublicKey; ownerSignatureState: PublicKey; systemProgram: PublicKey; rent: PublicKey; } export declare const layout: any; export declare function signTerms(args: SignTermsArgs, accounts: SignTermsAccounts): TransactionInstruction;