import { Profile } from "../profiles/Profile.interface"; import { Skill } from "../skills/Skill.interface"; export interface ExperienceFormState { error: string | undefined; isDisabled: boolean; isLoading: boolean; profileOptions: Profile[]; selectedSkills: Skill[]; skillOptions: Skill[]; }