import React from 'react'; export interface Props { description: string; title: string; theme?: 'default' | 'light' | 'negative'; } /** * * @deprecated This will be removed in the future. Use Card instead. */ declare const TotalCard: React.FC; export default TotalCard;