import React from 'react'; declare type CardProps = { heading: string; icon?: 'book' | 'clock' | 'graph' | 'user'; bodyText: string; children: React.ReactNode; }; export declare const Card: React.FC; export {};