/** * Copyright (c) 2015-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict */ export declare function getFriends(character: any): any; export declare function getHero(episode: any): { type: string; id: string; name: string; friends: string[]; appearsIn: number[]; homePlanet: string; } | { type: string; id: string; name: string; friends: string[]; appearsIn: number[]; primaryFunction: string; }; export declare function getHuman(id: any): any; export declare function getDroid(id: any): any;