import { Address, IAccountMeta, IAccountSignerMeta, IInstruction, TransactionSigner } from "@solana/kit";
export interface UpdateGlobalConfigArgs {
    mode: number;
    value: Array<number>;
}
export interface UpdateGlobalConfigAccounts {
    globalAdmin: TransactionSigner;
    globalConfig: Address;
}
export declare const layout: import("buffer-layout").Layout<UpdateGlobalConfigArgs>;
export declare function updateGlobalConfig(args: UpdateGlobalConfigArgs, accounts: UpdateGlobalConfigAccounts, remainingAccounts?: Array<IAccountMeta | IAccountSignerMeta>, programAddress?: Address): IInstruction<string, readonly (import("@solana/kit").IAccountLookupMeta<string, string> | IAccountMeta<string>)[]>;
//# sourceMappingURL=updateGlobalConfig.d.ts.map