import React from 'react'; import { View } from 'react-native'; import { TimelineProps, TimelineItemProps } from './types'; declare const TimelineItem: React.ForwardRefExoticComponent>; declare const Timeline: React.ForwardRefExoticComponent>; declare const TimelineWithItems: typeof Timeline & { Item: typeof TimelineItem; }; export { TimelineWithItems as Timeline }; export type { TimelineProps, TimelineItemProps };