UNPKG

@lonelyplanet/dotcom-core

Version:

This package is meant to house some of our more common UI and shared libs across dotcom applications.

11 lines (10 loc) 316 B
/// <reference types="react" /> export interface IResultItem { title: string; url: string; isVideo?: boolean; subHead: string; opType?: string; image?: string; } export declare const AutocompleteResultsListItem: ({ title, url, isVideo, subHead, opType, image, }: IResultItem) => JSX.Element;