/**
 * This code was AUTOGENERATED using the Codama library.
 * Please DO NOT EDIT THIS FILE, instead use visitors
 * to add features, then rerun Codama to update it.
 *
 * @see https://github.com/codama-idl/codama
 */
import { type AccountMeta, type AccountSignerMeta, type Address, type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder, type Instruction, type InstructionWithAccounts, type InstructionWithData, type ReadonlyAccount, type ReadonlyUint8Array, type TransactionSigner, type WritableAccount, type WritableSignerAccount } from "@solana/kit";
import { FARMS_PROGRAM_ADDRESS } from "../programs";
export declare const INITIALIZE_GLOBAL_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
export declare function getInitializeGlobalConfigDiscriminatorBytes(): ReadonlyUint8Array;
export type InitializeGlobalConfigInstruction<TProgram extends string = typeof FARMS_PROGRAM_ADDRESS, TAccountGlobalAdmin extends string | AccountMeta<string> = string, TAccountGlobalConfig extends string | AccountMeta<string> = string, TAccountTreasuryVaultsAuthority extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
    TAccountGlobalAdmin extends string ? WritableSignerAccount<TAccountGlobalAdmin> & AccountSignerMeta<TAccountGlobalAdmin> : TAccountGlobalAdmin,
    TAccountGlobalConfig extends string ? WritableAccount<TAccountGlobalConfig> : TAccountGlobalConfig,
    TAccountTreasuryVaultsAuthority extends string ? ReadonlyAccount<TAccountTreasuryVaultsAuthority> : TAccountTreasuryVaultsAuthority,
    TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
    ...TRemainingAccounts
]>;
export type InitializeGlobalConfigInstructionData = {
    discriminator: ReadonlyUint8Array;
};
export type InitializeGlobalConfigInstructionDataArgs = {};
export declare function getInitializeGlobalConfigInstructionDataEncoder(): FixedSizeEncoder<InitializeGlobalConfigInstructionDataArgs>;
export declare function getInitializeGlobalConfigInstructionDataDecoder(): FixedSizeDecoder<InitializeGlobalConfigInstructionData>;
export declare function getInitializeGlobalConfigInstructionDataCodec(): FixedSizeCodec<InitializeGlobalConfigInstructionDataArgs, InitializeGlobalConfigInstructionData>;
export type InitializeGlobalConfigInput<TAccountGlobalAdmin extends string = string, TAccountGlobalConfig extends string = string, TAccountTreasuryVaultsAuthority extends string = string, TAccountSystemProgram extends string = string> = {
    globalAdmin: TransactionSigner<TAccountGlobalAdmin>;
    globalConfig: Address<TAccountGlobalConfig>;
    treasuryVaultsAuthority: Address<TAccountTreasuryVaultsAuthority>;
    systemProgram?: Address<TAccountSystemProgram>;
};
export declare function getInitializeGlobalConfigInstruction<TAccountGlobalAdmin extends string, TAccountGlobalConfig extends string, TAccountTreasuryVaultsAuthority extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof FARMS_PROGRAM_ADDRESS>(input: InitializeGlobalConfigInput<TAccountGlobalAdmin, TAccountGlobalConfig, TAccountTreasuryVaultsAuthority, TAccountSystemProgram>, config?: {
    programAddress?: TProgramAddress;
}): InitializeGlobalConfigInstruction<TProgramAddress, TAccountGlobalAdmin, TAccountGlobalConfig, TAccountTreasuryVaultsAuthority, TAccountSystemProgram>;
export type ParsedInitializeGlobalConfigInstruction<TProgram extends string = typeof FARMS_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
    programAddress: Address<TProgram>;
    accounts: {
        globalAdmin: TAccountMetas[0];
        globalConfig: TAccountMetas[1];
        treasuryVaultsAuthority: TAccountMetas[2];
        systemProgram: TAccountMetas[3];
    };
    data: InitializeGlobalConfigInstructionData;
};
export declare function parseInitializeGlobalConfigInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedInitializeGlobalConfigInstruction<TProgram, TAccountMetas>;
//# sourceMappingURL=initializeGlobalConfig.d.ts.map