import React from 'react'; import { ButtonType, cardTheme, IconName } from '../../types'; type Props = { buttons: ButtonType[]; description: string; icon: IconName; title: string; theme?: cardTheme; }; export declare const Card: ({ buttons, description, icon, title, theme }: Props) => React.JSX.Element; export {};