import { Address, IAccountMeta, IInstruction, TransactionSigner } from "@solana/kit";
import * as types from "../types";
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<unknown>;
export declare function addPool(args: AddPoolArgs, accounts: AddPoolAccounts, programAddress?: Address): IInstruction<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>;
//# sourceMappingURL=addPool.d.ts.map