import { IconComponent } from '@backstage/core-plugin-api'; export interface CardLinkProps { icon: IconComponent; text: string; url: string; } export declare const CardLink: ({ icon: Icon, text, url }: CardLinkProps) => import("react/jsx-runtime").JSX.Element;