import { SxProps } from '@mui/system'; import { Theme } from '../../../theme/muiTheme'; import { EcologicalCreditInfoType } from './EcologicalCreditCard.types'; declare type Props = { infos: EcologicalCreditInfoType; sx?: SxProps; }; export declare const EcologicalCreditCardInfo: ({ infos: { country, price, count }, sx, }: Props) => JSX.Element; export {};