/**
 * 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 { ContentBlockDeltaEvent1 } from './ContentBlockDeltaEvent1';
import type { ContentBlockStartEvent1 } from './ContentBlockStartEvent1';
import type { ContentBlockStopEvent1 } from './ContentBlockStopEvent1';
import type { MessageStartEvent1 } from './MessageStartEvent1';
import type { MessageStopEvent1 } from './MessageStopEvent1';
/**
 * @type Delta
 *
 * @export
 */
export type Delta = ContentBlockDeltaEvent1 | ContentBlockStartEvent1 | ContentBlockStopEvent1 | MessageStartEvent1 | MessageStopEvent1;
export declare function DeltaFromJSON(json: any): Delta;
export declare function DeltaFromJSONTyped(json: any, ignoreDiscriminator: boolean): Delta;
export declare function DeltaToJSON(json: any): any;
export declare function DeltaToJSONTyped(value?: Delta | null, ignoreDiscriminator?: boolean): any;
