export type EditLabelInput = {
    labelId: string;
    newData: {
        name?: string;
        color?: string | null;
    };
};
export type EditLabelOutput = {
    labelId: string;
    name: string;
    color: string | null;
};
//# sourceMappingURL=edit-label.dto.d.ts.map