export type Arguments = { endpoint: string; body: any; }; /** * Facebook Graph API client. * * @param endpoint * @param body * @constructor */ declare const graphApi: ({ endpoint, body }: Arguments) => Promise; export default graphApi;