import React from 'react'; import { IAvatarProps } from '../../Elements/Avatar'; type TCommon = { content?: React.ReactNode; sideContent?: React.ReactNode; }; type TWithIcon = { type: 'icon'; icon?: React.ReactElement; iconBackground?: string; }; type TWithAvatar = Partial> & { type: 'avatar'; }; type TTimeline = TCommon & (TWithIcon | TWithAvatar); interface IFeedKitProps { classes?: Partial>; timeline: TTimeline[]; stacked?: boolean; } declare const FeedKit: React.FC; export default FeedKit; export type { TTimeline as TTimelineFeedKit }; //# sourceMappingURL=index.d.ts.map