import React from 'react'; type IConnectType = 'both' | 'start' | 'end'; declare const TimelineItem: React.ForwardRefExoticComponent & { connect?: IConnectType | undefined; startClassName?: string | undefined; endClassName?: string | undefined; } & React.RefAttributes>; export default TimelineItem;