import type { PropsWithChildren } from 'react';
import React from 'react';
interface ExperienceItemProps {
    title: string;
    company: string;
    location: string;
    from: string;
    to: string;
    summary?: string;
}
export declare function ExperienceItem({ title, company, location, from, to, summary, children, }: PropsWithChildren<ExperienceItemProps>): React.JSX.Element;
export {};
