import { HasId, ApiResponse } from './base';
export declare type Character = HasId & {
    height: string;
    race: string;
    gender: string;
    birth: string;
    spouse: string;
    death: string;
    realm: string;
    hair: string;
    name: string;
    wikiUrl: string;
};
export declare type MoviesListResponse = ApiResponse<Character>;
