import type React from 'react'; type Props = { textAlign?: 'left' | 'center' | 'right'; imgSrc?: string; isDark?: boolean; cardTitle?: string; cardSubTitle?: string; cardBody: string; handleIt?: (x: string) => boolean; header?: React.ReactNode; /** * Goes in footer */ children?: React.ReactNode; items: { id: string; title: string; description?: string; }[]; }; export declare const Card: React.FC; export default Card; //# sourceMappingURL=card.d.ts.map