/**
 * 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 ReadonlyUint8Array, type TransactionSigner, type WritableAccount, type WritableSignerAccount } from '@solana/kit';
import { LB_CLMM_PROGRAM_ADDRESS } from '../programs';
export declare const SET_ACTIVATION_SLOT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
export declare function getSetActivationSlotDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
export type SetActivationSlotInstruction<TProgram extends string = typeof LB_CLMM_PROGRAM_ADDRESS, TAccountLbPair extends string | AccountMeta<string> = string, TAccountAdmin extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[TAccountLbPair extends string ? WritableAccount<TAccountLbPair> : TAccountLbPair, TAccountAdmin extends string ? WritableSignerAccount<TAccountAdmin> & AccountSignerMeta<TAccountAdmin> : TAccountAdmin, ...TRemainingAccounts]>;
export type SetActivationSlotInstructionData = {
    discriminator: ReadonlyUint8Array;
    activationSlot: bigint;
};
export type SetActivationSlotInstructionDataArgs = {
    activationSlot: number | bigint;
};
export declare function getSetActivationSlotInstructionDataEncoder(): FixedSizeEncoder<SetActivationSlotInstructionDataArgs>;
export declare function getSetActivationSlotInstructionDataDecoder(): FixedSizeDecoder<SetActivationSlotInstructionData>;
export declare function getSetActivationSlotInstructionDataCodec(): FixedSizeCodec<SetActivationSlotInstructionDataArgs, SetActivationSlotInstructionData>;
export type SetActivationSlotInput<TAccountLbPair extends string = string, TAccountAdmin extends string = string> = {
    lbPair: Address<TAccountLbPair>;
    admin: TransactionSigner<TAccountAdmin>;
    activationSlot: SetActivationSlotInstructionDataArgs["activationSlot"];
};
export declare function getSetActivationSlotInstruction<TAccountLbPair extends string, TAccountAdmin extends string, TProgramAddress extends Address = typeof LB_CLMM_PROGRAM_ADDRESS>(input: SetActivationSlotInput<TAccountLbPair, TAccountAdmin>, config?: {
    programAddress?: TProgramAddress;
}): SetActivationSlotInstruction<TProgramAddress, TAccountLbPair, TAccountAdmin>;
export type ParsedSetActivationSlotInstruction<TProgram extends string = typeof LB_CLMM_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
    programAddress: Address<TProgram>;
    accounts: {
        lbPair: TAccountMetas[0];
        admin: TAccountMetas[1];
    };
    data: SetActivationSlotInstructionData;
};
export declare function parseSetActivationSlotInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedSetActivationSlotInstruction<TProgram, TAccountMetas>;
//# sourceMappingURL=setActivationSlot.d.ts.map