/** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * The title of the match. */ export type Title = string; /** * The main content or description of the search result. */ export type Text = string; /** * A URL linking to the specific match or more information. */ export type URL = string; export interface SearchResultMatchProps { title?: Title; snippet?: Text; url?: URL; }