import { TransactionInstruction, PublicKey } from '@solana/web3.js'; export interface SetFeeAuthorityAccounts { whirlpoolsConfig: PublicKey; feeAuthority: PublicKey; newFeeAuthority: PublicKey; } export declare function setFeeAuthority(accounts: SetFeeAuthorityAccounts): TransactionInstruction;