import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface UpdateFarmConfigArgs {
    mode: number;
    data: Array<number>;
}
export interface UpdateFarmConfigAccounts {
    farmAdmin: PublicKey;
    farmState: PublicKey;
    scopePrices: PublicKey;
}
export declare const layout: any;
export declare function updateFarmConfig(args: UpdateFarmConfigArgs, accounts: UpdateFarmConfigAccounts, programId?: PublicKey): TransactionInstruction;
