import { IAuth, Error } from '../../types'; export interface AuthReturn { token: string; } declare const auth: ({ email, password, }: IAuth) => Promise; export default auth;