export declare class PersonModel { id: number; lastName: string; firstName: string; dateOfBirth?: String; placeOfBirth?: String; dateOfDeath?: String; placeOfDeath?: String; sex?: String; constructor(); fromJSON(json: any): this; fromJSONs(jsons: any): PersonModel[]; }