import { type Address, type TransactionSigner } from '@solana/kit'; import type { getListInstruction } from '@nosana/jobs-program'; import type { InstructionsHelperParams } from './types.js'; export type ListParams = { market: Address; timeout: number | bigint; ipfsHash: string; payer?: TransactionSigner; }; export type ListInstruction = ReturnType; export type List = (params: ListParams) => Promise; export declare function list({ market, timeout, ipfsHash, payer }: ListParams, { config, deps, client, getRequiredWallet, getStaticAccounts, getNosATA, }: InstructionsHelperParams): Promise; //# sourceMappingURL=list.d.ts.map