/**
 * @export
 * @class AgentChatAttachment
 */
export declare class AgentChatAttachment {
    /**
     * Attachment kind (required)
     * @type {string}
     * @memberof AgentChatAttachment
     */
    kind?: string;
    /**
     * Tool call identifier
     * @type {string}
     * @memberof AgentChatAttachment
     */
    toolCallId?: string;
    /**
     * Attachment attributes map (required)
     * @type {{ [key: string]: any; }}
     * @memberof AgentChatAttachment
     */
    attributes?: {
        [key: string]: any;
    };
    constructor(obj?: Partial<AgentChatAttachment>);
}
export default AgentChatAttachment;
