import React from "react";
interface BentoCardData {
    title: string;
    description: string;
    icon: any;
    className?: string;
    background?: React.ReactNode;
}
interface BentoGridProps extends React.HTMLAttributes<HTMLDivElement> {
    cards: BentoCardData[];
    columns?: number;
    rowHeight?: string;
}
export declare const BentoGrid: ({ cards, columns, rowHeight, className, ...props }: BentoGridProps) => import("react/jsx-runtime").JSX.Element;
export {};
