8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
|
import * as React from 'react';
|
||
|
import type { TimelineProps } from './Timeline';
|
||
|
declare const TimelineItemList: React.FC<TimelineProps & {
|
||
|
hashId: string;
|
||
|
direction?: string;
|
||
|
}>;
|
||
|
export default TimelineItemList;
|