import type { PublicKey, TransactionInstruction } from '@solana/web3.js';
import type { DriftProgram } from '../../config';
export declare function buildUpdateFundingRateInstruction(args: {
    program: DriftProgram;
    perpMarketIndex: number;
    state: PublicKey;
    perpMarket: PublicKey;
    oracle: PublicKey;
}): Promise<TransactionInstruction>;
