import type { AnchorHTMLAttributes, ElementType, ReactNode } from 'react';
type CardProps = {
    title?: string;
    titleAs?: ElementType;
    subtitle?: string;
    subtitleAs?: ElementType;
    description?: string;
    children?: ReactNode;
    href: string;
    target?: AnchorHTMLAttributes<HTMLAnchorElement>['target'];
};
export declare const Card: import("react").ForwardRefExoticComponent<CardProps & import("react").RefAttributes<HTMLAnchorElement>>;
export {};
