import { StartMessage } from '../../../common';
import { BaseEntity } from '../../../../entities/core-entities/index.js';
/**
 * StartResponseBody class is responsible for
 * deserializing the response from the distribution
 * API to a start response body.
 */
export declare class StartResponseBody implements BaseEntity {
    [key: string]: unknown;
    message: StartMessage;
}
