import type { SearchParams } from '../search-params'; import type { Result } from '@internetarchive/result-type'; import type { SearchServiceError } from '../search-service-error'; import { BaseSearchBackend } from './base-search-backend'; import type { SearchBackendOptionsInterface } from './search-backend-options'; /** * The TVSearchBackend requests search results among TV captions from archive.org */ export declare class TVSearchBackend extends BaseSearchBackend { private servicePath; constructor(options?: SearchBackendOptionsInterface); /** @inheritdoc */ performSearch(params: SearchParams): Promise>; }