/**
 * Acknowledge response
 *
 * This response should be used for long runing commands where the result
 * will be eventually available at `resultUrl`
 *
 * @export
 * @class AckResponse
 */
export declare class AckResponse {
    message: string;
    resultUrl?: string;
    constructor(message: string, resultUrl?: string);
}
