import { IRepository } from '../../../core/database/repository'; import { CreateNoteTypeParams } from '../dto/create-note-type-params'; import { NoteTypeEntity } from '../note-type-entity'; export interface ICreateNoteTypeService { execute(params: CreateNoteTypeParams): Promise; } export declare class CreateNoteTypeService implements ICreateNoteTypeService { private readonly repository; constructor(repository: IRepository); execute(params: CreateNoteTypeParams): Promise; }