import { Address, IAccountMeta, IInstruction, TransactionSigner } from "@solana/kit";
import BN from "bn.js";
export interface IncreaseOracleLengthArgs {
    lengthToAdd: BN;
}
export interface IncreaseOracleLengthAccounts {
    oracle: Address;
    funder: TransactionSigner;
    systemProgram: Address;
    eventAuthority: Address;
    program: Address;
}
export declare const layout: import("buffer-layout").Layout<unknown>;
export declare function increaseOracleLength(args: IncreaseOracleLengthArgs, accounts: IncreaseOracleLengthAccounts, programAddress?: Address): IInstruction<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>;
//# sourceMappingURL=increaseOracleLength.d.ts.map