import { UseCaseInput, UseCaseOutput } from './useCaseDTO'; export interface UseCaseInterface { execute(data: UseCaseInput): Promise; }