/**
 * Maintains the status of the latest search.
 *
 * @public
 */
export interface SearchStatusState {
  /**
   * Whether a search is currently loading or has finished loading.
   */
  isLoading?: boolean
}