export type CreateLabelInput = {
    name: string;
    color?: string;
};
export type CreateLabelOutput = {
    labelId: string;
    name: string;
    color?: string;
};
//# sourceMappingURL=create-label.dto.d.ts.map