import React from 'react'; import { Story } from '../../types/story.types'; interface CardProps { story: Story; index: number; } export declare const Card: React.FC; export {};