UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

11 lines (10 loc) 343 B
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;