import type { App } from "./types"; interface AppCardProps { app: App; onOpen?: (app: App) => void; onFavorite?: (app: App) => void; showProgress?: boolean; className?: string; } export declare function AppCard({ app, onOpen, onFavorite, showProgress, className }: AppCardProps): import("react/jsx-runtime").JSX.Element; export {};