export type PopularityCategory = "محبوب ترین" | "محبوب" | "معمولی" | "کم محبوب";

export interface Company {
  id: number | null;
  name: string;
  description: string;
  popularity: PopularityCategory;
}

export interface CommandType {
  id: number;
  command: string;
  value: string;
  prompt: string;
}

export interface PromptTexts {
  skill: string;
  enthusiasm: string;
  customer: string;
  companyRanking: string;
}

export interface TabContent {
  label: string;
  value: string;
  onChange: (value: string) => void;
  rows: number;
}
