import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface UpdateGlobalConfigArgs {
    key: number;
    index: number;
    value: Array<number>;
}
export interface UpdateGlobalConfigAccounts {
    adminAuthority: PublicKey;
    globalConfig: PublicKey;
    systemProgram: PublicKey;
}
export declare const layout: any;
export declare function updateGlobalConfig(args: UpdateGlobalConfigArgs, accounts: UpdateGlobalConfigAccounts): TransactionInstruction;
