package be.simplenotes.domain.usecases.export import java.io.InputStream interface ExportUseCase { fun exportAsJson(userId: Int): String fun exportAsZip(userId: Int): InputStream }