import { Address, AccountMeta, AccountSignerMeta, Instruction, TransactionSigner } from "@solana/kit"; import * as types from "../types"; export declare const DISCRIMINATOR: Buffer; export interface SwapArgs { params: types.SwapParamsFields; } export interface SwapAccounts { owner: TransactionSigner; fundingAccount: Address; receivingAccount: Address; transferAuthority: Address; perpetuals: Address; pool: Address; receivingCustody: Address; receivingCustodyOracleAccount: Address; receivingCustodyTokenAccount: Address; dispensingCustody: Address; dispensingCustodyOracleAccount: Address; dispensingCustodyTokenAccount: Address; tokenProgram: Address; eventAuthority: Address; program: Address; } export declare const layout: import("buffer-layout").Layout; export declare function swap(args: SwapArgs, accounts: SwapAccounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=swap.d.ts.map