import { Source, TitleMainType } from "./enums"; import { IFoundedTitleDetails } from "./interfaces"; export type SearchTitleByNameOptions = { exactMatch?: boolean; specificType?: TitleMainType; sourceType?: Source; }; export declare function searchTitleByName(queryName: string, { exactMatch, specificType, sourceType, }?: SearchTitleByNameOptions): Promise;