/** * 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 Address, type Codec, type Decoder, type Encoder, type IAccountMeta, type IInstruction, type IInstructionWithAccounts, type IInstructionWithData, type ReadonlyAccount } from '@solana/kit'; import { type StakeAccountAssertions, type StakeAccountAssertionsArgs } from '../../hooked'; import { LIGHTHOUSE_PROGRAM_ADDRESS } from '../programs'; import { LogLevel, type LogLevelArgs } from '../types'; export declare const ASSERT_STAKE_ACCOUNT_MULTI_DISCRIMINATOR = 12; export declare function getAssertStakeAccountMultiDiscriminatorBytes(): import("@solana/kit").ReadonlyUint8Array; export type AssertStakeAccountMultiInstruction = string, TRemainingAccounts extends readonly IAccountMeta[] = []> = IInstruction & IInstructionWithData & IInstructionWithAccounts<[ TAccountTargetAccount extends string ? ReadonlyAccount : TAccountTargetAccount, ...TRemainingAccounts ]>; export type AssertStakeAccountMultiInstructionData = { discriminator: number; logLevel: LogLevel; assertions: StakeAccountAssertions; }; export type AssertStakeAccountMultiInstructionDataArgs = { logLevel?: LogLevelArgs; assertions: StakeAccountAssertionsArgs; }; export declare function getAssertStakeAccountMultiInstructionDataEncoder(): Encoder; export declare function getAssertStakeAccountMultiInstructionDataDecoder(): Decoder; export declare function getAssertStakeAccountMultiInstructionDataCodec(): Codec; export type AssertStakeAccountMultiInput = { /** Target account to be asserted */ targetAccount: Address; logLevel?: AssertStakeAccountMultiInstructionDataArgs['logLevel']; assertions: AssertStakeAccountMultiInstructionDataArgs['assertions']; }; export declare function getAssertStakeAccountMultiInstruction(input: AssertStakeAccountMultiInput, config?: { programAddress?: TProgramAddress; }): AssertStakeAccountMultiInstruction; export type ParsedAssertStakeAccountMultiInstruction = { programAddress: Address; accounts: { /** Target account to be asserted */ targetAccount: TAccountMetas[0]; }; data: AssertStakeAccountMultiInstructionData; }; export declare function parseAssertStakeAccountMultiInstruction(instruction: IInstruction & IInstructionWithAccounts & IInstructionWithData): ParsedAssertStakeAccountMultiInstruction; //# sourceMappingURL=assertStakeAccountMulti.d.ts.map