import { FunctionComponent, HTMLAttributes } from 'react';
export interface CartTitleProps extends HTMLAttributes<HTMLDivElement | HTMLAnchorElement> {
    coverLink?: boolean;
    href?: string;
}
export declare const CardClickable: FunctionComponent<CartTitleProps>;
