import type { KyInstance } from 'ky'; import type { FuturesClosedTrade } from '../../../types.js'; export interface FuturesIsolatedCloseTradeInput { id: string; } export type FuturesIsolatedCloseOutput = FuturesClosedTrade; type Close = (input: Readonly) => Promise; export declare const createClose: (instance: Readonly) => Close; export {}; //# sourceMappingURL=close.d.ts.map