/// <reference types="react" />
import { TCardProps } from '@/components/card/Card';
export type TCardLinkProps = TCardProps & {
    href: string;
    innerRef?: React.Ref<HTMLAnchorElement>;
};
export declare function CardLink({ href, children, innerRef, isLink, ...props }: TCardLinkProps): React.ReactElement;
