import { Entity } from "./Entity.interface"; export declare class Teams implements Entity { private _url; private _helper_url_list; private _html_ref; 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 html_ref(): string; set html_ref(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: { blockName: string; blockDesc: string; numColumns: number; fields: { label: string; inputType: string; }[]; }[]; data: any; }; fromDsProjectRoom(obj: any[], data: any): Teams; toShortInputOutput(): void; } export declare class TeamsRecord { prefix: string; first: string; middle: string; last: string; suffix: string; credentials: string; job_title: string; company: string; bio: string; resume: OrgDetails[]; education: OrgDetails[]; images: string[]; links: string[]; phones: string[]; mobiles: string[]; faxes: string[]; urls: string[]; emails: string[]; constructor(obj?: any); toJSON(): { prefix: string; first: string; middle: string; last: string; suffix: string; credentials: string; job_title: string; company: string; bio: string; resume: OrgDetails[]; education: OrgDetails[]; images: string[]; links: string[]; phones: string[]; mobiles: string[]; faxes: string[]; urls: string[]; emails: string[]; }; toNerEntities(type?: number): any; nerEntityTypeOptions(): any[]; } export declare class OrgDetails { organization: string; title: string; date_from: string; date_to: string; constructor(obj?: any); toJSON(): { organization: string; title: string; date_from: string; date_to: string; }; }