import type { Address } from '@solana/kit'; import type { getDelistInstruction } from '@nosana/jobs-program'; import type { InstructionsHelperParams } from './types.js'; export type DelistParams = { job: Address; }; export type DelistInstruction = ReturnType; export type Delist = (params: DelistParams) => Promise; export declare function delist({ job }: DelistParams, { config, deps, client, get, getRequiredWallet, getStaticAccounts, getNosATA, }: InstructionsHelperParams): Promise; //# sourceMappingURL=delist.d.ts.map