/// <reference types="react" />
export interface ShowcaseItem {
    icon?: JSX.Element;
    title: string;
    subtitle: string | JSX.Element;
}
export interface ShowcaseProps {
    title: string;
    items: Array<ShowcaseItem>;
}
export declare const Showcase: ({ title, items }: ShowcaseProps) => import("react/jsx-runtime").JSX.Element;
