import type { Address, TransactionSigner } from '@solana/kit'; import type { getCloseInstruction } from '@nosana/jobs-program'; import type { InstructionsHelperParams } from './types.js'; export type CloseParams = { market: Address; payer?: TransactionSigner; }; export type CloseInstruction = ReturnType; export type Close = (params: CloseParams) => Promise; export declare function close({ market, payer }: CloseParams, { config, deps, client, getRequiredWallet, getStaticAccounts, getNosATA, }: InstructionsHelperParams): Promise; //# sourceMappingURL=close.d.ts.map