import { ReactNode } from "react";
import PropTypes from "prop-types";
interface timelineArray {
    content: ReactNode | any;
    img: any;
    id: string | number;
}
interface TimelineProps {
    timelineArray: timelineArray[];
}
export { TimelineProps };
declare const GrepsrTimeline: {
    (props: TimelineProps): JSX.Element;
    defaultProps: {};
    propTypes: {
        timelineArray: PropTypes.Requireable<any[]>;
    };
};
export default GrepsrTimeline;
