import * as React from 'react';
import '../styles/index.css';
type CardProps = {
    id: string;
    title: string;
    description: string;
    price: number;
    category: string;
    imageUrl: string;
};
export declare const Card: ({ id, imageUrl, title, category, price, description }: CardProps) => React.JSX.Element;
export {};
