import { AssistantsUsecases } from '@/usecases/assistants/assistants.usecases'; import { CreateAssistantDto } from '@/infrastructure/dtos/assistants/create-assistant.dto'; import { AssistantEntity } from '../entities/assistant.entity'; export declare class AssistantsController { private readonly assistantsService; constructor(assistantsService: AssistantsUsecases); create(createAssistantDto: CreateAssistantDto): Promise; findAll(limit: number, order: 'asc' | 'desc', after?: string, before?: string): Promise>; findOne(id: string): Promise; remove(id: string): Promise; }