declare const tinderApi: { auth: { withFacebook: (credentials: import("./types/auth").Credentials) => Promise; }; feeling: { like: (userId: string) => Promise; pass: (userId: string) => Promise; }; recommandation: { getRecommandations: () => Promise; }; }; export default tinderApi;