import type { Assistant, AssistantResponseFormatOption, AssistantToolResources } from '@/domain/models/assistant.interface'; export declare class CreateThreadAssistantDto implements Assistant { id: string; avatar?: string; name: string; model: string; instructions: string; tools: any; description: string | null; metadata: Record | null; object: 'assistant'; temperature?: number | null; top_p?: number | null; created_at: number; response_format?: AssistantResponseFormatOption; tool_resources?: AssistantToolResources; }