import { Entity } from "./entity"; import { DsProjectRoomBlock, DsProjectRoomData } from "../dynamic-labeling-room/entities"; export declare class Trex implements Entity { private _url; private _helper_url_list; private _domain; private _page_title; private _page_description; private _page_keywords; private _page_type; private _exampleEntityData; private _records; constructor(obj?: any); get url(): string; set url(value: string); get records(): any[]; set records(value: any[]); get helper_url_list(): string; set helper_url_list(value: string); get page_type(): string; set page_type(value: string); get page_keywords(): string; set page_keywords(value: string); get page_description(): string; set page_description(value: string); get page_title(): string; set page_title(value: string); get domain(): string; set domain(value: string); toJSON(): { url: string; helper_url_list: string; records: any[]; }; nerEntityTypeOptions(): any[]; toNerEntities(): any; toDsProjectRoom(): { blocks: any[]; data: DsProjectRoomData; }; fromDsProjectRoom(obj: DsProjectRoomBlock[], data: DsProjectRoomData): Trex; } export declare class TrexRecord implements Entity { valid: boolean; section_type: string; section_idx: number; n_sections: number; section_valid: boolean; section_headline: string; bio: string; prefix: string; first: string; middle: string; last: string; suffix: string; credentials: string; job_title: string; company: string; images: string[]; links: string[]; phones: string[]; mobiles: string[]; faxes: string[]; urls: string[]; emails: string[]; text: ''; constructor(obj?: any); toJSON(): { valid: boolean; section_type: string; section_idx: number; n_sections: number; section_valid: boolean; section_headline: string; bio: string; prefix: string; first: string; middle: string; last: string; suffix: string; credentials: string; job_title: string; company: string; images: string[]; links: string[]; phones: string[]; mobiles: string[]; faxes: string[]; urls: string[]; emails: string[]; }; toNerEntities(type?: number): any; nerEntityTypeOptions(): any[]; } //# sourceMappingURL=trex.d.ts.map