import { authOAuthSignin, authResetPassword, authSignin, authSignout } from '../utils/authFetch'; import { getUser, updateUser } from '../utils/userCRUD'; export declare const defaultAuth: { getUser: typeof getUser; update: typeof updateUser; signin: typeof authSignin; signout: typeof authSignout; resetPassword: typeof authResetPassword; oauthSignin: typeof authOAuthSignin; };