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