import type { ReactNode } from "react"; export interface CardLinkProps { children?: ReactNode; className?: string; href?: string; icon?: ReactNode; iconPosition?: "left" | "right"; } export declare const CardLink: React.FC;