react-native-ui-lib
Version:
[](https://stand-with-ukraine.pp.ua)
12 lines (11 loc) • 543 B
TypeScript
import React from 'react';
import { TimelineProps, PointProps, LineProps, StateTypes, PointTypes, LineTypes } from './types';
export { TimelineProps, PointProps as TimelinePointProps, LineProps as TimelineLineProps, StateTypes as TimelineStateTypes, PointTypes as TimelinePointTypes, LineTypes as TimelineLineTypes };
declare const Timeline: {
(props: TimelineProps): React.JSX.Element;
displayName: string;
states: typeof StateTypes;
lineTypes: typeof LineTypes;
pointTypes: typeof PointTypes;
};
export default Timeline;