import { Address, AccountMeta, AccountSignerMeta, Instruction, TransactionSigner } from "@solana/kit"; import * as types from "../types"; export declare const DISCRIMINATOR: Buffer; export interface AddCustodyArgs { params: types.AddCustodyParamsFields; } export interface AddCustodyAccounts { admin: TransactionSigner; transferAuthority: Address; perpetuals: Address; pool: Address; custody: Address; custodyTokenAccount: Address; custodyTokenMint: Address; systemProgram: Address; tokenProgram: Address; rent: Address; } export declare const layout: import("buffer-layout").Layout; export declare function addCustody(args: AddCustodyArgs, accounts: AddCustodyAccounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=addCustody.d.ts.map