import { Common } from "./common.namespace";
/**
 * Abort
 * @description Namespace for Abort
 */
export declare namespace Abort {
    /**
     * Interfaces
     * @description Namespace for Interfaces
     */
    namespace Interfaces {
        /**
         * Response
         * @description Interface for Response
         */
        interface IResponse extends Common.Interfaces.IResponse {
        }
        /**
         * Request
         * @description Interface for Request
         */
        interface IRequest extends Common.Interfaces.ISaleToPOIRequest {
            AbortRequest?: IAbortRequest;
        }
        /**
         * Abort request
         * @description Interface for Abort request
         */
        interface IAbortRequest {
            MessageReference?: Common.Interfaces.IMessageReference;
            AbortReason?: string;
        }
    }
}
