import { IQueryResult } from "../../app"; export interface IFindByTitleOpts { config: string; device: string; title: string; "dry-run"?: boolean; episode?: number; season?: number; } export declare function pickBestMatchForTitle(candidates: AsyncIterable, title: string): Promise; export default function findByTitle(opts: IFindByTitleOpts): Promise;