import type { PaginationResponse } from './Paginate'; export declare type Movie = { _id: string; name: string; runtimeInMinutes: number; budgetInMillions: number; boxOfficeRevenueInMillions: number; academyAwardNominations: number; academyAwardWins: number; rottenTomatoesScore: number; }; export declare type GetMoviesResponse = PaginationResponse & { docs: Movie[]; }; export declare type GetMovieResponse = PaginationResponse & { docs: Movie; }; //# sourceMappingURL=Movie.d.ts.map