import React from 'react';
import { Story } from '../../../types/story.types';
export interface StoryProps {
    story: Story;
    index: number;
}
declare const BubbleItem: React.FC<StoryProps>;
export default BubbleItem;
