import { PaginationResponse } from './Paginate'; export declare type Character = { _id: string; height: string; race: string; gender: string; birth: string; spouse: string; death: string; realm: string; hair: string; name: string; wikiUrl: string; }; export declare type GetCharactersResponse = PaginationResponse & { docs: Character[]; }; export declare type GetCharacterResponse = PaginationResponse & { docs: Character[]; }; //# sourceMappingURL=Character.d.ts.map