import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import BN from "bn.js";
export interface IncreaseOracleLengthArgs {
    lengthToAdd: BN;
}
export interface IncreaseOracleLengthAccounts {
    oracle: PublicKey;
    funder: PublicKey;
    systemProgram: PublicKey;
    eventAuthority: PublicKey;
    program: PublicKey;
}
export declare const layout: any;
export declare function increaseOracleLength(args: IncreaseOracleLengthArgs, accounts: IncreaseOracleLengthAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=increaseOracleLength.d.ts.map