import React, { AnchorHTMLAttributes } from 'react'; export interface CCardLinkProps extends AnchorHTMLAttributes { /** * A string of all className you want applied to the base component. */ className?: string; /** * The href attribute specifies the URL of the page the link goes to. */ href?: string; } export declare const CCardLink: React.ForwardRefExoticComponent>;