import { LabelItem, LabelItemList } from '@/models/label' export interface LabelItemListRepository { list(projectId: string): Promise create(projectId: string, item: LabelItem): Promise update(projectId: string, item: LabelItem): Promise bulkDelete(projectId: string, labelIds: number[]): Promise uploadFile(projectId: string, payload: FormData): Promise }