import type { ReactNode } from "react"; export type GlCardProps = { className?: string; children?: ReactNode; link?: { href: string; onClick?: () => void; }; }; export declare const GlCard: import("react").MemoExoticComponent<(props: GlCardProps) => import("react/jsx-runtime").JSX.Element>;