import { type Style } from 'inlines'; import { IconProps } from '../Icon/index.js'; type LinkCardProps = { title: string; description: string; icon?: IconProps['variant']; style?: Style; onClick?: () => void; }; export declare const LinkCard: ({ title, description, icon, onClick, style, }: LinkCardProps) => import("react/jsx-runtime").JSX.Element; export {};