/**
 * Represents the result of a request to cancel and order
 */
export declare type CanceledOrderResponse = {
    /**
     * orderId
     */
    id?: string;
    /**
     * http response code
     */
    status?: number;
};
