import ManifestType from './ManifestType';
/**
 * @export
 * @class ManifestTypeResponse
 */
export declare class ManifestTypeResponse {
    /**
     * The type of the manifest
     * @type {ManifestType}
     * @memberof ManifestTypeResponse
     */
    type?: ManifestType;
    constructor(obj?: Partial<ManifestTypeResponse>);
}
export default ManifestTypeResponse;
