import { ReactElement } from 'react'; import { ItemProps } from './Item'; export type TimelineProps = { children: ReactElement | ReactElement[]; spacing?: ItemProps['spacing']; color?: ItemProps['color']; }; export declare const Timeline: { ({ children, spacing, color }: TimelineProps): import("react/jsx-runtime").JSX.Element; Item: ({ children, variant, spacing, textVariant, style, ...rest }: ItemProps) => import("react/jsx-runtime").JSX.Element; };