export type DialogMode = 'add' | 'edit';

export interface ExperienceFormValues {
  designation: string;
  jobType: { label: string; value: string } | null;
  companyName: string;
  companyWebsiteLink: string;
  startDate: Date | '';
  endDate: Date | '';
  currentJob: boolean;
  jobRes: string;
}

export interface MappedExperience {
  id: string;
  label: string;
  type: string;
  company: string;
  start_date: string;
  end_date: string | null;
  responsibilities: string;
}