import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import * as types from "../types";
export interface UpdateFeeParametersArgs {
    feeParameter: types.FeeParameterFields;
}
export interface UpdateFeeParametersAccounts {
    lbPair: PublicKey;
    admin: PublicKey;
    eventAuthority: PublicKey;
    program: PublicKey;
}
export declare const layout: any;
export declare function updateFeeParameters(args: UpdateFeeParametersArgs, accounts: UpdateFeeParametersAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=updateFeeParameters.d.ts.map