import { Address, IInstruction, TransactionSigner } from "@solana/kit";
export interface UpdateGlobalConfigArgs {
    key: number;
    index: number;
    value: Array<number>;
}
export interface UpdateGlobalConfigAccounts {
    adminAuthority: TransactionSigner;
    globalConfig: Address;
    systemProgram: Address;
}
export declare const layout: import("buffer-layout").Layout<unknown>;
export declare function updateGlobalConfig(args: UpdateGlobalConfigArgs, accounts: UpdateGlobalConfigAccounts, programAddress?: Address): IInstruction;
//# sourceMappingURL=updateGlobalConfig.d.ts.map