declare abstract class CommonDescription {
    code?: string | null;
    description?: string | null;
}

export { CommonDescription };
