/// export declare type ExperienceItemProps = { id: string; image: string; company: string; designation: string; link?: string; joinDate: Date; endDate: Date | null | false; text?: string; bigVersion?: boolean; horizontalView?: boolean; onPortfolio?: boolean; }; declare const ExperienceItem: ({ id, image, company, designation, joinDate, endDate, text, link, bigVersion, horizontalView, onPortfolio, }: ExperienceItemProps) => JSX.Element; export default ExperienceItem;