import { Address, AccountMeta, AccountSignerMeta, Instruction, TransactionSigner } from "@solana/kit"; import * as types from "../types"; export declare const DISCRIMINATOR: Buffer; export interface WithdrawFeesArgs { params: types.WithdrawFeesParamsFields; } export interface WithdrawFeesAccounts { keeper: TransactionSigner; transferAuthority: Address; perpetuals: Address; pool: Address; custody: Address; custodyTokenAccount: Address; custodyOracleAccount: Address; receivingTokenAccount: Address; tokenProgram: Address; } export declare const layout: import("buffer-layout").Layout; export declare function withdrawFees(args: WithdrawFeesArgs, accounts: WithdrawFeesAccounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=withdrawFees.d.ts.map