import { Source } from "./enums"; import { IFoundedPersonDetails } from "./interfaces"; export type SearchPersonByNameOptions = { exactMatch?: boolean; sourceType?: Source; }; export declare function searchPersonByName(queryName: string, { exactMatch, sourceType, }?: SearchPersonByNameOptions): Promise;