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