export declare class CustomStatusEntity { id?: string; name?: string; description?: string; color?: string; native?: boolean; static fromCustomStatusDto(dto: CustomStatusDto): CustomStatusEntity; static toCustomStatusDto(entity: CustomStatusEntity): CustomStatusDto; } export declare class CustomStatusDto { id?: string; name?: string; description?: string; color?: string; native?: boolean; }