import { IFoundedPersonDetails, IPerson } from "./interfaces"; import { SearchPersonByNameOptions } from "./personSearcher"; export declare function getPersonDetailsByUrl(titleUrl: string): Promise; export declare function getPersonDetailsByFoundedPersonDetails(foundedTitleDetails: IFoundedPersonDetails): Promise; export declare function getPersonDetailsByName(personName: string, { exactMatch }?: SearchPersonByNameOptions): Promise; export declare function getPersonDetailsByIMDBId(personId: string): Promise;