import BaseEntity from './BaseEntity'; export type PersonGender = 'female' | 'male' | 'other'; export type PersonProfession = 'actor' | 'director' | 'writer'; export declare class IBiography extends BaseEntity { id: number; status: string; comment_status: string; names: { id: number; name: string; full_name?: string; language: string; content?: string; excerpt?: string; }[]; gender: string; profession: string[]; birth_date: string; death_date?: string; publish_date: string; edit_time: string; id_connections: { id: number; imdb_id: number; tmdb_id?: number; }[]; posters: { id: number; file_path: string; format: string; size: string; }[]; constructor(partial: Partial); }