import type { Address } from '@solana/kit'; import type { getStopInstruction } from '@nosana/jobs-program'; import type { InstructionsHelperParams } from './types.js'; export type StopParams = { market: Address; node?: Address; }; export type StopInstruction = ReturnType; export type Stop = (params: StopParams) => Promise; export declare function stop({ market, node }: StopParams, { deps, client, getRequiredWallet, getStaticAccounts }: InstructionsHelperParams): Promise; //# sourceMappingURL=stop.d.ts.map