import { BinanceSignedClient } from '../../../clients';
import { spot, XOR } from '../../../info';
export declare type CancelOCOPayload = {
    symbol: string;
    newClientOrderId?: string;
} & XOR<{
    orderListId: number;
}, {
    listClientOrderId: string;
}>;
export declare type CancelOCOResponse = spot.OrderOCOResultResponse;
export declare function cancelOCO(client: BinanceSignedClient, payload: CancelOCOPayload): Promise<spot.OrderOCOResultResponse>;
