import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface UpdateFarmAdminAccounts {
    pendingFarmAdmin: PublicKey;
    farmState: PublicKey;
}
export declare function updateFarmAdmin(accounts: UpdateFarmAdminAccounts, programId?: PublicKey): TransactionInstruction;
