import { Service, CheerioModuleType } from './service'; import { AccountProofInfo } from '../profileProofs'; declare class LinkedIn extends Service { getBaseUrls(): string[]; getProofUrl(proof: AccountProofInfo): string; normalizeUrl(_proof: AccountProofInfo): string; shouldValidateIdentityInBody(): boolean; getProofIdentity(searchText: string, cheerio: CheerioModuleType): string; getProofStatement(searchText: string, cheerio: CheerioModuleType): string; } export { LinkedIn };