import React from 'react'; import './index.css'; export interface CardProps { content: React.ReactNode; title: string; cover?: React.ReactNode; key?: string; active?: boolean; disabled?: boolean; onCardClick?: () => void; onDoubleClickCard?: () => void; } export declare const FcrCard: (props: CardProps) => React.JSX.Element;