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