/**
 * 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 { AnthropicTextBlock } from './AnthropicTextBlock';
import type { AnthropicThinkingBlock } from './AnthropicThinkingBlock';
import type { AnthropicToolUseBlock } from './AnthropicToolUseBlock';
/**
 * @type ContentBlock1
 *
 * @export
 */
export type ContentBlock1 = AnthropicTextBlock | AnthropicThinkingBlock | AnthropicToolUseBlock;
export declare function ContentBlock1FromJSON(json: any): ContentBlock1;
export declare function ContentBlock1FromJSONTyped(json: any, ignoreDiscriminator: boolean): ContentBlock1;
export declare function ContentBlock1ToJSON(json: any): any;
export declare function ContentBlock1ToJSONTyped(value?: ContentBlock1 | null, ignoreDiscriminator?: boolean): any;
