import { Entity } from "./entity"; export declare class PersonExtractor implements Entity { private _domain; private _internal; private _results; constructor(obj?: any); get domain(): string; set domain(value: string); get internal(): any; set internal(value: any); get results(): any[]; set results(value: any[]); toJSON(): { domain: string; internal: any; results: any[]; }; toNerEntities(type?: number): { relationOptions: any[]; entities: OnePersonRecordNer; }; nerEntityTypeOptions(): any[]; } export declare class OnePersonExtractor { page_uid: string; no_records: number; text: string[]; url: string; page_storage_path: string; person_records: OnePersonRecord[]; constructor(obj?: any); } export declare class OnePersonRecord { private name; private tc; private location; private connections; private bio; constructor(obj?: any); } export declare class OnePersonRecordNer { private name; private tc; private location; private connections; private bio; constructor(obj?: any); } //# sourceMappingURL=preson-extractor.d.ts.map