UNPKG

@lobehub/ui

Version:

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

13 lines (12 loc) 367 B
/// <reference types="react" /> export interface SearchResultItem { alt?: string; summary?: string; title?: string; url: string; } export interface SearchResultCardsProps { dataSource: string[] | SearchResultItem[]; } declare const SearchResultCards: import("react").NamedExoticComponent<SearchResultCardsProps>; export default SearchResultCards;