import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface ChangePoolAccounts {
    adminAuthority: PublicKey;
    strategy: PublicKey;
    oldPosition: PublicKey;
    baseVaultAuthority: PublicKey;
    globalConfig: PublicKey;
    newPool: PublicKey;
    poolProgram: PublicKey;
}
export declare function changePool(accounts: ChangePoolAccounts): TransactionInstruction;
