/**
 * AskNews API
 * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod)
 *
 * The version of the OpenAPI document: 0.24.66
 * Contact: contact@emergentmethods.ai
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { ContentBlockDeltaEvent } from './ContentBlockDeltaEvent';
import type { ContentBlockStartEvent } from './ContentBlockStartEvent';
import type { ContentBlockStopEvent } from './ContentBlockStopEvent';
import type { MessageStartEvent } from './MessageStartEvent';
import type { MessageStopEvent } from './MessageStopEvent';
/**
 * @type Delta2
 *
 * @export
 */
export type Delta2 = ContentBlockDeltaEvent | ContentBlockStartEvent | ContentBlockStopEvent | MessageStartEvent | MessageStopEvent;
export declare function Delta2FromJSON(json: any): Delta2;
export declare function Delta2FromJSONTyped(json: any, ignoreDiscriminator: boolean): Delta2;
export declare function Delta2ToJSON(json: any): any;
export declare function Delta2ToJSONTyped(value?: Delta2 | null, ignoreDiscriminator?: boolean): any;
