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<typeof getDelistInstruction>;
export type Delist = (params: DelistParams) => Promise<DelistInstruction>;
export declare function delist({ job }: DelistParams, { config, deps, client, get, getRequiredWallet, getStaticAccounts, getNosATA, }: InstructionsHelperParams): Promise<DelistInstruction>;
//# sourceMappingURL=delist.d.ts.map