import { Result } from '../types'; declare type Response = { body: string; tokenValue: string; }; declare const fetchData: ({ body, tokenValue }: Response) => Promise; export default fetchData;