import type { LiteralUnion } from 'type-fest';
type Props = {
    name: string;
    description?: string;
    logo?: string;
    size?: number;
    extra?: React.ReactNode;
    variant?: LiteralUnion<'square' | 'rounded' | 'circular', string>;
};
export default function ProductCard({ size, variant, name, logo, description, extra, }: Props): import("react").JSX.Element;
export {};
