import { Address, AccountMeta, AccountSignerMeta, Instruction, TransactionSigner } from "@solana/kit"; import * as types from "../types"; export declare const DISCRIMINATOR: Buffer; export interface TestInitArgs { params: types.TestInitParamsFields; } export interface TestInitAccounts { upgradeAuthority: TransactionSigner; admin: Address; transferAuthority: Address; perpetuals: Address; systemProgram: Address; tokenProgram: Address; } export declare const layout: import("buffer-layout").Layout; export declare function testInit(args: TestInitArgs, accounts: TestInitAccounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=testInit.d.ts.map