import { EhAppIndexed } from '@env-hopper/backend-core'; interface ActionCardProps { app: EhAppIndexed; actionName: string; onClick: () => void; className?: string; } export declare function ActionCard({ app, actionName, onClick, className, }: ActionCardProps): import("react/jsx-runtime").JSX.Element; export {};