import { Address, AccountMeta, AccountSignerMeta, Instruction, TransactionSigner } from "@solana/kit"; import * as types from "../types"; export declare const DISCRIMINATOR: Buffer; export interface UpdateGlobalConfigArgs { mode: types.UpdateGlobalConfigModeKind; value: Uint8Array; } export interface UpdateGlobalConfigAccounts { globalAdmin: TransactionSigner; globalConfig: Address; instructionSysvarAccount: Address; } export declare const layout: import("buffer-layout").Layout; export declare function updateGlobalConfig(args: UpdateGlobalConfigArgs, accounts: UpdateGlobalConfigAccounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=updateGlobalConfig.d.ts.map