import type { ComponentType, ElementType, ReactNode } from 'react' import type { HTMLAttrs } from './common' export interface StoryCardProps extends HTMLAttrs { href?: string onPress?: () => void tag?: string date: string title: string description: string image?: string | ReactNode tokens?: Record variant?: Record LinkRouter?: ElementType linkRouterProps?: Record } export declare const StoryCard: ComponentType