import { Ref } from 'react';
import { AProps } from "../../../types";
export interface SearchResultCardProps extends AProps {
    alt?: string;
    ref?: Ref<HTMLAnchorElement>;
    title?: string;
    url: string;
}
declare const SearchResultCard: import("react").NamedExoticComponent<SearchResultCardProps>;
export default SearchResultCard;
