import { CSSProperties } from 'react'; import { PackageInfo } from "../../data/packageInfo"; export interface AppIconProps { className?: string; package: PackageInfo; width?: number; height?: number; style?: CSSProperties; onClick?: (app: PackageInfo) => void; } export declare const AppIcon: (props: AppIconProps) => JSX.Element;