import type { ILabel } from "todo-entity";
import type { IRepository } from "../../common/repositories/repository.js";
export type CreateLabelRepositoryInput = ILabel;
export type CreateLabelRepositoryOutput = ILabel;
export interface ICreateLabelRepository extends IRepository {
    createLabel(input: CreateLabelRepositoryInput): Promise<CreateLabelRepositoryOutput>;
}
//# sourceMappingURL=create-label.repository.d.ts.map