import { Authenticated } from '../utils/client'; import { Language } from './../utils/language'; import { Type } from './type'; export interface User { id: number; first_name: string; last_name: string; email: string; created_at: string; updated_at: string; default_language: Language['code']; type: Type; } export declare const fetch: ({ authToken }: Authenticated) => Promise; //# sourceMappingURL=index.d.ts.map