import React, { CSSProperties } from 'react';
export type Props = {
    title?: string;
    url: string;
    image?: string;
    logo?: string;
    className?: string;
    noRefetch?: boolean;
    style?: CSSProperties;
};
declare const CardLink: ({ title, url, image, logo, className, style, noRefetch, }: Props) => React.JSX.Element;
export { CardLink };
