import type { UUID } from '../../index.js';
import type { RestFetcher } from '../../rest.js';
import type { OptionsSettlement } from './types.js';
import type { OptionsTradeRunningWithDelta } from './types.js';
export declare const createUpdateTrade: (request: RestFetcher) => (body: {
    id: UUID;
    settlement: OptionsSettlement;
}) => Promise<OptionsTradeRunningWithDelta>;
