import * as Types from './types'; export declare const People: (apiKey: string) => { /** * Query the top level details of a person. * @param {number} person_id * @param {object} options * @returns Prmoise */ GetDetails: (person_id: number, options?: Types.AppendOptions) => Promise; /** * Get the recent changes for a person. * @param {number} person_id * @param {object} options * @returns Promise */ GetChanges: (person_id: number, options?: Types.PersonChangesOptions) => Promise; /** * Get the combined movie and TV credits that belong to a person. * @param {number} person_id * @param {object} options * @returns Promise */ GetCombinedCredits: (person_id: number, options?: Types.Options) => Promise; /** * Get the external ID's that belong to a person. * @param {number} person_id * @returns Promise */ GetExternalIds: (person_id: number) => Promise; /** * Get the profile images that belong to a person. * @param {number} person_id * @returns Promise */ GetImages: (person_id: number) => Promise; /** * Get the newest created person. This is a live response and will continuously change.# * @returns Promise */ GetLatest: () => Promise; /** * Get the movie credits for a person. * @param {number} person_id * @param {object} options * @returns Promise */ GetMovieCredits: (person_id: number, options?: Types.PageOptions) => Promise; /** * Get the TV credits that belong to a person. * @param {number} person_id * @param {object} options * @returns Promise */ GetTVCredits: (person_id: number, options?: Types.PageOptions) => Promise; }; export default People;